diff options
author | Ross Burton <ross.burton@arm.com> | 2020-11-11 15:26:16 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-07 22:26:42 +0000 |
commit | 1dbef3ce981495ad08ca045c6ad80a7417f4619c (patch) | |
tree | 44d177249a06d7b113f0c0a8e77b88fc8ebba135 /meta | |
parent | c9299cea8306a7fb7c13abd8a287dd3b7af36ab7 (diff) | |
download | poky-1dbef3ce981495ad08ca045c6ad80a7417f4619c.tar.gz |
autotools: don't warn about obsolete usage
New autoconf warns about obsolete macro usage, but there is quite
a lot of obsolete usage in the wild which isn't really in our problem.
(From OE-Core rev: a152b5a37aec247b0540b82ad6c9bdc20c532d21)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 2ceb790b5c..36eb56c70d 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -229,7 +229,7 @@ autotools_do_configure() { | |||
229 | done | 229 | done |
230 | 230 | ||
231 | bbnote Executing ACLOCAL=\"$ACLOCAL\" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths | 231 | bbnote Executing ACLOCAL=\"$ACLOCAL\" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths |
232 | ACLOCAL="$ACLOCAL" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || die "autoreconf execution failed." | 232 | ACLOCAL="$ACLOCAL" autoreconf -Wcross -Wno-obsolete --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || die "autoreconf execution failed." |
233 | cd $olddir | 233 | cd $olddir |
234 | fi | 234 | fi |
235 | if [ -e ${CONFIGURE_SCRIPT} ]; then | 235 | if [ -e ${CONFIGURE_SCRIPT} ]; then |