From: Andre McCurdy Date: Tue, 24 Jul 2018 02:32:18 +0000 (-0700) Subject: autotools.bbclass: fix autoreconf bbnote commandline arguments X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fe258fb84a15850546f60db474050288c24d95d8;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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. (From OE-Core rev: 40644b2b33db6332293543bb39e8d4da07cf8c54) Signed-off-by: Andre McCurdy Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index cc857acc3e6..81d367415b9 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