From d4bf7ab99614b18ae776ccd3a2df27c491055b95 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Sun, 4 Mar 2018 01:11:04 +0000 Subject: Update to dbus-1.12.6. Update to man-db-2.8.2. Update to gawk-4.2.1. Update to meson-0.44.1. Update to meson-0.44.1. Update to linux-4.15.7. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11382 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/automake.xml | 16 ++++++++++++---- chapter06/coreutils.xml | 12 +++++++++++- 2 files changed, 23 insertions(+), 5 deletions(-) (limited to 'chapter06') diff --git a/chapter06/automake.xml b/chapter06/automake.xml index edff95cd3..146f5fd76 100644 --- a/chapter06/automake.xml +++ b/chapter06/automake.xml @@ -49,18 +49,26 @@ make - There are a couple of tests that incorrectly link to the + -sed -i "s:./configure:LEXLIB=/usr/lib/libfl.a &:" t/lex-{clean,depend}-cxx.sh -make -j4 check + Using the -j4 make option speeds up the tests, even on systems with + only one processor, due to internal delays in individual tests. To test + the results, issue: + + +make -j4 check + + Install the package: make install diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index b03e3e62a..a228fdfc8 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -62,13 +62,23 @@ Now prepare Coreutils for compilation: -FORCE_UNSAFE_CONFIGURE=1 ./configure \ +autoreconf -fiv +FORCE_UNSAFE_CONFIGURE=1 ./configure \ --prefix=/usr \ --enable-no-install-program=kill,uptime The meaning of the configure options: + + autoreconf + + This command updates generated configuration files + consistent with the latest version of automake. + + + + FORCE_UNSAFE_CONFIGURE=1 -- cgit v1.2.3-54-g00ecf