diff options
author | Ross Burton <ross.burton@intel.com> | 2014-11-28 15:35:15 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-03 12:22:42 +0000 |
commit | cdb5bf9ce2eed0c1608b33d8272e755c26e376f9 (patch) | |
tree | 2c69c1e9c697416c3795a32da64d3597aae2bb7e | |
parent | 1d31ddb856a80ba9da1a64ed5d701dc0f7351ef7 (diff) | |
download | openembedded-core-cdb5bf9ce2eed0c1608b33d8272e755c26e376f9.tar.gz openembedded-core-cdb5bf9ce2eed0c1608b33d8272e755c26e376f9.tar.bz2 openembedded-core-cdb5bf9ce2eed0c1608b33d8272e755c26e376f9.zip |
bash: use EXTRA_AUTORECONF to disable autoheader
Disable autoheader by setting EXTRA_AUTORECONF to --exclude=autoheader instead
of setting AUTOHEADER to true.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index d35d25cc92..a00db5c821 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc @@ -8,6 +8,7 @@ inherit autotools-brokensep gettext texinfo update-alternatives ptest PARALLEL_MAKE = "" +EXTRA_AUTORECONF += "--exclude=autoheader" EXTRA_OECONF = "--enable-job-control" ALTERNATIVE_${PN} = "sh" @@ -15,8 +16,6 @@ ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" ALTERNATIVE_TARGET[sh] = "${base_bindir}/bash" ALTERNATIVE_PRIORITY = "100" -export AUTOHEADER = "true" - RDEPENDS_${PN} += "base-files" RDEPENDS_${PN}_class-nativesdk = "" RDEPENDS_${PN}-ptest += "make" |