From efcb3933433838b71f3a4a53ec1ac6d899aaec0b Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Sun, 3 May 2020 21:02:51 +0000 Subject: Make the new book git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross-chap5@11831 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/make.xml | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) (limited to 'chapter05/make.xml') diff --git a/chapter05/make.xml b/chapter05/make.xml index 205ae5f15..5f895c49d 100644 --- a/chapter05/make.xml +++ b/chapter05/make.xml @@ -41,41 +41,20 @@ Installation of Make - Prepare Make for compilation: -./configure --prefix=/tools --without-guile - - - The meaning of the configure option: - - - --without-guile - - This ensures that Make-&make-version; won't link against Guile libraries, which - may be present on the host system, but won't be available within the - chroot environment in the next chapter. - - - +./configure --prefix=/usr \ + --host=$LFS_TGT \ + --build=$(build-aux/config.guess) Compile the package: make - Compilation is now complete. As discussed earlier, running the test - suite is not mandatory for the temporary tools here in this chapter. To run - the Make test suite anyway, issue the following command: - -make check - Install the package: -make install +make DESTDIR=$LFS install -- cgit v1.2.3-54-g00ecf