From a0eddfc85c5a1cdc9260b7a1fef49cc8c11377f1 Mon Sep 17 00:00:00 2001 From: Nathan Fisher Date: Sun, 28 Mar 2021 12:13:02 -0400 Subject: [PATCH] grub - remove dependency on nonexistant os-prober --- world/grub/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/world/grub/Makefile b/world/grub/Makefile index 7950546..38d1139 100644 --- a/world/grub/Makefile +++ b/world/grub/Makefile @@ -10,6 +10,9 @@ config_opts += --disable-efiemu config_opts += --disable-werror config_opts += --disable-device-mapper -post_install = mv -v $(DESTDIR)/etc/bash_completion.d/grub $(DESTDIR)/usr/share/bash-completion/completions +define post_install + mv -v $(DESTDIR)/etc/bash_completion.d/grub $(DESTDIR)/usr/share/bash-completion/completions + rm -rf $(DESTDIR)/etc/grub.d/30_os-prober +endef include targets.mk