From 0445a3d50660d84f11d095db0177078f4f5cd8a0 Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Tue, 18 Sep 2007 21:11:00 +0000 Subject: Added remap attributes to userinput tags in packages pages. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8389 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/coreutils.xml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'chapter05/coreutils.xml') diff --git a/chapter05/coreutils.xml b/chapter05/coreutils.xml index e52e60d85..8a35596a7 100644 --- a/chapter05/coreutils.xml +++ b/chapter05/coreutils.xml @@ -47,29 +47,31 @@ by Coreutils is incompatible with the version that current Glibc provides, so we'll rename the function: -for file in src/{copy,touch}.c lib/utimens.{c,h} ; do \ +for file in src/{copy,touch}.c lib/utimens.{c,h} ; do \ cp -v $file{,.orig} sed 's/futimens/gl_&/' $file.orig > $file done Prepare Coreutils for compilation: -./configure --prefix=/tools +./configure --prefix=/tools Compile the package: -make +make - To test the results, issue: - make RUN_EXPENSIVE_TESTS=yes check. The - RUN_EXPENSIVE_TESTS=yes parameter tells the + To test the results, issue: + +make RUN_EXPENSIVE_TESTS=yes check + + The RUN_EXPENSIVE_TESTS=yes parameter tells the test suite to run several additional tests that are considered relatively expensive (in terms of CPU power and memory usage) on some platforms, but generally are not a problem on Linux. Install the package: -make install +make install The above command refuses to install su because it cannot install it setuid root as a non-privileged user. By @@ -78,7 +80,7 @@ done useful su from our host first place in our PATH. Install it with: -cp -v src/su /tools/bin/su-tools +cp -v src/su /tools/bin/su-tools -- cgit v1.2.3-54-g00ecf