buildgcc: Run aclocal before configure
Ubuntu 19.04 will fail looking for aclocal-1.15 if the scripts are not regenerated because 19.04 ships with 1.16. There are not enough eyes to roll when working with GNU autotools. Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I4aa9f520499930ffc984ab0b0144c9c6b2e544a0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/35522 Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
f47c32a12d
commit
f5fa96f9c3
|
@ -893,9 +893,11 @@ build_LLVM() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build_MAKE() {
|
build_MAKE() {
|
||||||
|
( cd ../${MAKE_DIR}/ && aclocal && autoconf )
|
||||||
CC="$(hostcc host)" CXX="$(hostcxx host)" CFLAGS="$HOSTCFLAGS" \
|
CC="$(hostcc host)" CXX="$(hostcxx host)" CFLAGS="$HOSTCFLAGS" \
|
||||||
../${MAKE_DIR}/configure --prefix="$TARGETDIR" --disable-nls \
|
../${MAKE_DIR}/configure --prefix="$TARGETDIR" --disable-nls \
|
||||||
|| touch .failed
|
|| touch .failed
|
||||||
|
$MAKE -k clean
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
$MAKE $JOBS || touch .failed
|
$MAKE $JOBS || touch .failed
|
||||||
$MAKE install DESTDIR=$DESTDIR || touch .failed
|
$MAKE install DESTDIR=$DESTDIR || touch .failed
|
||||||
|
|
Loading…
Reference in New Issue