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