From 3409500faf8b0b78771cf143f24951964bb73e36 Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Mon, 5 Oct 2015 14:35:11 +0900 Subject: Explicitly disable guile in build of gnu make. During the stage2 build, we are using header files from the target sandbox but host build tools, which will automatically detect guile if present on the build host. This prevents the build of 'make' to otherwise fail while building guile.o, due to the lack of 'gmp.h' (and possibly other unneeded cruft). Change-Id: I5be8467afc9486bf40055000e4c6460232345b93 --- strata/build-essential/stage2-make.morph | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strata/build-essential/stage2-make.morph b/strata/build-essential/stage2-make.morph index 0b05581c..af5e5347 100644 --- a/strata/build-essential/stage2-make.morph +++ b/strata/build-essential/stage2-make.morph @@ -3,7 +3,7 @@ kind: chunk build-system: autotools configure-commands: - STAGE2_SYSROOT="$(dirname $(pwd))" CPPFLAGS="--sysroot=$STAGE2_SYSROOT" CXX=false - LDFLAGS="--sysroot=$STAGE2_SYSROOT" ./configure --prefix="$PREFIX" --disable-nls + LDFLAGS="--sysroot=$STAGE2_SYSROOT" ./configure --prefix="$PREFIX" --disable-nls --without-guile --build=$(sh config/config.guess) --host=$TARGET_STAGE1 build-commands: - STAGE2_SYSROOT="$(dirname $(pwd))" make -- cgit v1.2.1