Changeset c465ee6


Ignore:
Timestamp:
01/03/2003 03:55:07 AM (21 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v4_1, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
d5b175d8
Parents:
8836e60
Message:

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

Files:
10 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r8836e60 rc465ee6  
    5858</para></listitem>
    5959
     60<listitem><para>January 2nd, 2003 [geard]: Chapter 05 - All packages whose
     61configure script supports the LDFLAGS environment variable now use it
     62rather than passing the variable down to
     63<userinput>make</userinput>.</para></listitem>
     64
    6065<listitem><para>January 2nd, 2003 [gerard]: Chapter 06 - Fixed the gawk
    6166patch. <userinput>make uninstall</userinput> will no longer wipe out the
  • chapter05/findutils-inst.xml

    r8836e60 rc465ee6  
    99<para><screen><userinput>patch -Np1 -i ../findutils-&findutils-patch-version;.patch &amp;&amp;
    1010CPPFLAGS=-Dre_max_failures=re_max_failures2 \
    11 &nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=$LFS/static &amp;&amp;
    12 make LDFLAGS="-static" &amp;&amp;
     11&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static &amp;&amp;
     12make &amp;&amp;
    1313make install</userinput></screen></para>
    1414
  • chapter05/gawk-inst.xml

    r8836e60 rc465ee6  
    55
    66<para><screen><userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2 \
    7 &nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=$LFS/static --disable-nls &amp;&amp;
    8 make LDFLAGS="-static" &amp;&amp;
     7&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls &amp;&amp;
     8make &amp;&amp;
    99make install</userinput></screen></para>
    1010
  • chapter05/make-inst.xml

    r8836e60 rc465ee6  
    44<para>Install Make by running the following commands:</para>
    55
    6 <para><screen><userinput>./configure --prefix=$LFS/static --disable-nls &amp;&amp;
    7 make LDFLAGS="-static" &amp;&amp;
     6<para><screen><userinput>LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls &amp;&amp;
     7make &amp;&amp;
    88make install</userinput></screen></para>
    99
  • chapter05/patch-inst.xml

    r8836e60 rc465ee6  
    55
    66<para><screen><userinput>CPPFLAGS=-D_GNU_SOURCE \
    7 &nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=$LFS/static &amp;&amp;
    8 make LDFLAGS="-static" &amp;&amp;
     7&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static &amp;&amp;
     8make &amp;&amp;
    99make install</userinput></screen></para>
    1010
  • chapter05/sed-inst.xml

    r8836e60 rc465ee6  
    55
    66<para><screen><userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2 \
    7 &nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=$LFS/static --disable-nls &amp;&amp;
    8 make LDFLAGS="-static" &amp;&amp;
     7&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls &amp;&amp;
     8make &amp;&amp;
    99make install</userinput></screen></para>
    1010
  • chapter05/shellutils-inst.xml

    r8836e60 rc465ee6  
    1313<para>Install Sh-utils by running the following commands:</para>
    1414
    15 <para><screen><userinput>./configure --prefix=$LFS/static \
     15<para><screen><userinput>LDFLAGS="-static" ./configure --prefix=$LFS/static \
    1616&nbsp;&nbsp;&nbsp;&nbsp;--disable-nls &amp;&amp;
    17 make LDFLAGS="-static" &amp;&amp;
     17make &amp;&amp;
    1818make install</userinput></screen></para>
    1919
  • chapter05/tar-inst.xml

    r8836e60 rc465ee6  
    1313<para>Install Tar by running the following commands:</para>
    1414
    15 <para><screen><userinput>./configure --prefix=$LFS/static --disable-nls &amp;&amp;
    16 make LDFLAGS="-static" &amp;&amp;
     15<para><screen><userinput>LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls &amp;&amp;
     16make &amp;&amp;
    1717make install</userinput></screen></para>
    1818
  • chapter05/textutils-inst.xml

    r8836e60 rc465ee6  
    55
    66<para><screen><userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2 \
    7 &nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=$LFS/static \
     7&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static \
    88&nbsp;&nbsp;&nbsp;&nbsp;--disable-nls &amp;&amp;
    9 make LDFLAGS="-static" &amp;&amp;
     9make &amp;&amp;
    1010make install</userinput></screen></para>
    1111
  • chapter05/utillinux-inst.xml

    r8836e60 rc465ee6  
    77<para>Install Util-linux by running the following commands:</para>
    88
    9 <para><screen><userinput>./configure &amp;&amp;
     9<para><screen><userinput>LDFLAGS="-static" ./configure &amp;&amp;
    1010make -C lib &amp;&amp;
    11 make -C mount LDFLAGS="-static" mount umount &amp;&amp;
     11make -C mount mount umount &amp;&amp;
    1212cp mount/{mount,umount} $LFS/static/bin</userinput></screen></para>
    1313
Note: See TracChangeset for help on using the changeset viewer.