From: Andre McCurdy Date: Tue, 24 Jul 2018 02:32:18 +0000 (-0700) Subject: autotools.bbclass: fix autoreconf bbnote commandline arguments X-Git-Tag: uninative-2.3~895 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=40644b2b33db6332293543bb39e8d4da07cf8c54;p=openembedded-core.git autotools.bbclass: fix autoreconf bbnote commandline arguments Leaving -Wcross out of the bbnote version of the autoreconf command seems to be a long standing inconsistency (dating back to the very first commit in oe-core) but there's no obvious reason to do so. Signed-off-by: Andre McCurdy Signed-off-by: Ross Burton --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index cc857acc3e..81d367415b 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -225,7 +225,7 @@ autotools_do_configure() { find ${S} -ignore_readdir_race -name $i -delete done - bbnote Executing ACLOCAL=\"$ACLOCAL\" autoreconf --verbose --install --force ${EXTRA_AUTORECONF} $acpaths + bbnote Executing ACLOCAL=\"$ACLOCAL\" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths ACLOCAL="$ACLOCAL" autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || die "autoreconf execution failed." cd $olddir fi