changed patch CPPFLAGS part to match how it's done with for example

chapter5/sed


git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1518 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2002-01-30 20:11:21 +00:00
parent 18b846f5f6
commit b6e5dcfd09
2 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,9 @@
<para>Install Patch by running the following commands:</para>
<para><screen><userinput>CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" ./configure --prefix=$LFS/usr &amp;&amp;
<para><screen><userinput>export CPPFLAGS=-D_GNU_SOURCE &amp;&amp;
./configure --prefix=$LFS/usr &amp;&amp;
unset CPPFLAGS &amp;&amp;
make LDFLAGS=-static &amp;&amp;
make install</userinput></screen></para>

View File

@ -3,7 +3,9 @@
<para>Install Patch by running the following commands:</para>
<para><screen><userinput>CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" ./configure --prefix=/usr &amp;&amp;
<para><screen><userinput>export CPPFLAGS=-D_GNU_SOURCE &amp;&amp;
./configure --prefix=/usr &amp;&amp;
unset CPPFLAGS &amp;&amp;
make &amp;&amp;
make install</userinput></screen></para>