From 0b63a37abe8f130b390f1c4be54768dd1832213e Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Wed, 6 May 2020 11:46:06 +0000 Subject: Prevent "make" from using guile from the build host git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross-chap5@11835 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/make.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'chapter05/make.xml') diff --git a/chapter05/make.xml b/chapter05/make.xml index 5f895c49d..2d054dd9e 100644 --- a/chapter05/make.xml +++ b/chapter05/make.xml @@ -45,9 +45,23 @@ Prepare Make for compilation: ./configure --prefix=/usr \ + --without-guile \ --host=$LFS_TGT \ --build=$(build-aux/config.guess) + + The meaning of the new configure option: + + + --without-guile + + Although we are cross-compiling, configure tries to use + guile from the build host if it finds it. This makes compilation + fail, so this switch prevents using it. + + + + Compile the package: make -- cgit v1.2.3-54-g00ecf