From c465ee61bcb2911f09d9b398f939adf92d29ec00 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Fri, 3 Jan 2003 03:55:07 +0000 Subject: packages whose configure script support the LDFLAGS env. var now use it rather than passing down that var to make git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2276 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/findutils-inst.xml | 4 ++-- chapter05/gawk-inst.xml | 4 ++-- chapter05/make-inst.xml | 4 ++-- chapter05/patch-inst.xml | 4 ++-- chapter05/sed-inst.xml | 4 ++-- chapter05/shellutils-inst.xml | 4 ++-- chapter05/tar-inst.xml | 4 ++-- chapter05/textutils-inst.xml | 4 ++-- chapter05/utillinux-inst.xml | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) (limited to 'chapter05') diff --git a/chapter05/findutils-inst.xml b/chapter05/findutils-inst.xml index 9b1a214db..6b09d0afa 100644 --- a/chapter05/findutils-inst.xml +++ b/chapter05/findutils-inst.xml @@ -8,8 +8,8 @@ install it. patch -Np1 -i ../findutils-&findutils-patch-version;.patch && CPPFLAGS=-Dre_max_failures=re_max_failures2 \ -    ./configure --prefix=$LFS/static && -make LDFLAGS="-static" && +    LDFLAGS="-static" ./configure --prefix=$LFS/static && +make && make install diff --git a/chapter05/gawk-inst.xml b/chapter05/gawk-inst.xml index 954cd565f..e4366b5b9 100644 --- a/chapter05/gawk-inst.xml +++ b/chapter05/gawk-inst.xml @@ -4,8 +4,8 @@ Install Gawk by running the following commands: CPPFLAGS=-Dre_max_failures=re_max_failures2 \ -    ./configure --prefix=$LFS/static --disable-nls && -make LDFLAGS="-static" && +    LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls && +make && make install diff --git a/chapter05/make-inst.xml b/chapter05/make-inst.xml index a2b907532..8f91baa6a 100644 --- a/chapter05/make-inst.xml +++ b/chapter05/make-inst.xml @@ -3,8 +3,8 @@ Install Make by running the following commands: -./configure --prefix=$LFS/static --disable-nls && -make LDFLAGS="-static" && +LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls && +make && make install During the make install phase you will see this warning: diff --git a/chapter05/patch-inst.xml b/chapter05/patch-inst.xml index 078e30c69..9142a23bf 100644 --- a/chapter05/patch-inst.xml +++ b/chapter05/patch-inst.xml @@ -4,8 +4,8 @@ Install Patch by running the following commands: CPPFLAGS=-D_GNU_SOURCE \ -    ./configure --prefix=$LFS/static && -make LDFLAGS="-static" && +    LDFLAGS="-static" ./configure --prefix=$LFS/static && +make && make install diff --git a/chapter05/sed-inst.xml b/chapter05/sed-inst.xml index f26d25b55..f2bdf1b86 100644 --- a/chapter05/sed-inst.xml +++ b/chapter05/sed-inst.xml @@ -4,8 +4,8 @@ Install Sed by running the following commands: CPPFLAGS=-Dre_max_failures=re_max_failures2 \ -    ./configure --prefix=$LFS/static --disable-nls && -make LDFLAGS="-static" && +    LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls && +make && make install diff --git a/chapter05/shellutils-inst.xml b/chapter05/shellutils-inst.xml index 138ef995c..b9b2659e5 100644 --- a/chapter05/shellutils-inst.xml +++ b/chapter05/shellutils-inst.xml @@ -12,9 +12,9 @@ it. Install Sh-utils by running the following commands: -./configure --prefix=$LFS/static \ +LDFLAGS="-static" ./configure --prefix=$LFS/static \     --disable-nls && -make LDFLAGS="-static" && +make && make install During the make install stage you will see the following warning: diff --git a/chapter05/tar-inst.xml b/chapter05/tar-inst.xml index b9bd593dd..92060aaa4 100644 --- a/chapter05/tar-inst.xml +++ b/chapter05/tar-inst.xml @@ -12,8 +12,8 @@ for gzip files). Install Tar by running the following commands: -./configure --prefix=$LFS/static --disable-nls && -make LDFLAGS="-static" && +LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls && +make && make install diff --git a/chapter05/textutils-inst.xml b/chapter05/textutils-inst.xml index af8771e8a..b7050d25c 100644 --- a/chapter05/textutils-inst.xml +++ b/chapter05/textutils-inst.xml @@ -4,9 +4,9 @@ Install Textutils by running the following commands: CPPFLAGS=-Dre_max_failures=re_max_failures2 \ -    ./configure --prefix=$LFS/static \ +    LDFLAGS="-static" ./configure --prefix=$LFS/static \     --disable-nls && -make LDFLAGS="-static" && +make && make install diff --git a/chapter05/utillinux-inst.xml b/chapter05/utillinux-inst.xml index 5638d7f2d..12e22e833 100644 --- a/chapter05/utillinux-inst.xml +++ b/chapter05/utillinux-inst.xml @@ -6,9 +6,9 @@ be compiling the entire package. Install Util-linux by running the following commands: -./configure && +LDFLAGS="-static" ./configure && make -C lib && -make -C mount LDFLAGS="-static" mount umount && +make -C mount mount umount && cp mount/{mount,umount} $LFS/static/bin -- cgit v1.2.3-54-g00ecf