diff options
author | Ross Burton <ross.burton@intel.com> | 2014-11-28 21:30:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-03 12:24:00 +0000 |
commit | fcd72aab59aae77f7b3995d07201078aaf9f8c17 (patch) | |
tree | 61e507bb68066d09e0d33bc9dfd588d8dde86dea | |
parent | 8a21eee81b1b2034ab0975b896c769a0233263cc (diff) | |
download | poky-fcd72aab59aae77f7b3995d07201078aaf9f8c17.tar.gz |
attr: use EXTRA_AUTORECONF to disable autoheader
Disable autoheader by setting EXTRA_AUTORECONF to --exclude=autoheader instead
of setting AUTOHEADER to true.
(From OE-Core rev: aa4c06ca7375faacd055ba98d59d48efadd87f59)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/attr/ea-acl.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/attr/ea-acl.inc b/meta/recipes-support/attr/ea-acl.inc index 72f623e593..b17e9b10a4 100644 --- a/meta/recipes-support/attr/ea-acl.inc +++ b/meta/recipes-support/attr/ea-acl.inc | |||
@@ -7,7 +7,7 @@ inherit autotools-brokensep gettext | |||
7 | 7 | ||
8 | # the package comes with a custom config.h.in, it cannot be | 8 | # the package comes with a custom config.h.in, it cannot be |
9 | # overwritten by autoheader | 9 | # overwritten by autoheader |
10 | export AUTOHEADER = "true" | 10 | EXTRA_AUTORECONF += "--exclude=autoheader" |
11 | EXTRA_OECONF = "INSTALL_USER=root INSTALL_GROUP=root" | 11 | EXTRA_OECONF = "INSTALL_USER=root INSTALL_GROUP=root" |
12 | EXTRA_OECONF_append_class-native = " --enable-gettext=no" | 12 | EXTRA_OECONF_append_class-native = " --enable-gettext=no" |
13 | 13 | ||