diff options
-rw-r--r-- | meta/recipes-bsp/grub/grub2.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc index 84a47273a5..5a12563975 100644 --- a/meta/recipes-bsp/grub/grub2.inc +++ b/meta/recipes-bsp/grub/grub2.inc | |||
@@ -44,10 +44,16 @@ PACKAGECONFIG ??= "" | |||
44 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" | 44 | PACKAGECONFIG[grub-mount] = "--enable-grub-mount,--disable-grub-mount,fuse" |
45 | PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,lvm2" | 45 | PACKAGECONFIG[device-mapper] = "--enable-device-mapper,--disable-device-mapper,lvm2" |
46 | 46 | ||
47 | do_configure_prepend() { | ||
48 | # The grub2 configure script uses variables such as TARGET_CFLAGS etc | ||
49 | # for its own purposes. Remove the OE versions from the environment to | ||
50 | # avoid conflicts. | ||
51 | unset TARGET_CPPFLAGS TARGET_CFLAGS TARGET_CXXFLAGS TARGET_LDFLAGS | ||
52 | } | ||
53 | |||
47 | # grub and grub-efi's sysroot/${datadir}/grub/grub-mkconfig_lib are | 54 | # grub and grub-efi's sysroot/${datadir}/grub/grub-mkconfig_lib are |
48 | # conflicted, remove it since no one uses it. | 55 | # conflicted, remove it since no one uses it. |
49 | SYSROOT_PREPROCESS_FUNCS_class-target += "remove_sysroot_mkconfig_lib" | 56 | SYSROOT_PREPROCESS_FUNCS_class-target += "remove_sysroot_mkconfig_lib" |
50 | remove_sysroot_mkconfig_lib() { | 57 | remove_sysroot_mkconfig_lib() { |
51 | rm -r "${SYSROOT_DESTDIR}${datadir}/grub/grub-mkconfig_lib" | 58 | rm -r "${SYSROOT_DESTDIR}${datadir}/grub/grub-mkconfig_lib" |
52 | } | 59 | } |
53 | |||