diff options
author | Ross Burton <ross.burton@intel.com> | 2014-01-13 17:26:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-14 17:03:55 +0000 |
commit | a4bcb3f19f4a64cce8e8e406903255a4a6b547f8 (patch) | |
tree | f6569c50d7b2e80d01d119ad8b53ab00d2b1cc4f /meta/recipes-bsp/grub/grub-efi_2.00.bb | |
parent | 5ccdc914126e2408519bd9cae9dec20066a3033e (diff) | |
download | poky-a4bcb3f19f4a64cce8e8e406903255a4a6b547f8.tar.gz |
grub-efi: remove configure patch, simply seed the cache
grub-2.00-disable-help2man patches configure.ac to disable the help2man check
because we don't need the man pages. It also then patches configure itself so
that autogen.sh doesn't have to be called for performance reasons. However,
do_configure causes a full autoreconf so this optimisation is moot, and can
cause patch failures when an existing build tree is re-used.
Instead, simply use CACHED_CONFIGUREVARS to tell configure that it can't find
help2man.
(From OE-Core rev: 34b9b2931da1fbf4c68a3e35f4ca56553058574b)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub/grub-efi_2.00.bb')
-rw-r--r-- | meta/recipes-bsp/grub/grub-efi_2.00.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub-efi_2.00.bb b/meta/recipes-bsp/grub/grub-efi_2.00.bb index deb95149b3..e02def3e5f 100644 --- a/meta/recipes-bsp/grub/grub-efi_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi_2.00.bb | |||
@@ -22,7 +22,6 @@ SRC_URI = "ftp://ftp.gnu.org/gnu/grub/grub-${PV}.tar.gz \ | |||
22 | file://cfg \ | 22 | file://cfg \ |
23 | file://grub-2.00-fpmath-sse-387-fix.patch \ | 23 | file://grub-2.00-fpmath-sse-387-fix.patch \ |
24 | file://grub-2.00-fix-enable_execute_stack-check.patch \ | 24 | file://grub-2.00-fix-enable_execute_stack-check.patch \ |
25 | file://grub-2.00-disable-help2man.patch \ | ||
26 | file://check-if-liblzma-is-disabled.patch \ | 25 | file://check-if-liblzma-is-disabled.patch \ |
27 | file://grub-no-unused-result.patch \ | 26 | file://grub-no-unused-result.patch \ |
28 | file://grub-2.00-ignore-gnulib-gets-stupidity.patch \ | 27 | file://grub-2.00-ignore-gnulib-gets-stupidity.patch \ |
@@ -56,6 +55,7 @@ inherit autotools | |||
56 | inherit gettext | 55 | inherit gettext |
57 | inherit deploy | 56 | inherit deploy |
58 | 57 | ||
58 | CACHED_CONFIGUREVARS += "ac_cv_path_HELP2MAN=" | ||
59 | EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ | 59 | EXTRA_OECONF = "--with-platform=efi --disable-grub-mkfont \ |
60 | --enable-efiemu=no --program-prefix='' \ | 60 | --enable-efiemu=no --program-prefix='' \ |
61 | --enable-liblzma=no --enable-device-mapper=no --enable-libzfs=no" | 61 | --enable-liblzma=no --enable-device-mapper=no --enable-libzfs=no" |