svn commit: r41035 - head/en_US.ISO8859-1/books/porters-handbook
Eitan Adler
eadler at FreeBSD.org
Sat Feb 23 14:50:00 UTC 2013
Author: eadler
Date: Sat Feb 23 14:49:59 2013
New Revision: 41035
URL: http://svnweb.freebsd.org/changeset/doc/41035
Log:
Using CONFIGURE_ENV for CPPFLAGS and
LDFLAGS is not needed since r282433.
PR: docs/174827
Submitted by: Dominique Goncalves <dominique.goncalves at gmail.com>
Reviewed by: crees
Reviewed by: amdmi3
Modified:
head/en_US.ISO8859-1/books/porters-handbook/book.xml
Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml
==============================================================================
--- head/en_US.ISO8859-1/books/porters-handbook/book.xml Sat Feb 23 12:51:37 2013 (r41034)
+++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Sat Feb 23 14:49:59 2013 (r41035)
@@ -5726,17 +5726,13 @@ IGNORE= may not be redistributed because
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \
- LDFLAGS="${LDFLAGS}"</programlisting>
+GNU_CONFIGURE= yes</programlisting>
<para>Of course, the code can be more compact if there are no
more flags to pass to <command>configure</command>:</para>
<programlisting>USE_GETTEXT= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"</programlisting>
+GNU_CONFIGURE= yes</programlisting>
</sect2>
<sect2>
More information about the svn-doc-head
mailing list