| Summary: | Porter's Handbook: Usage of CONFIGURE_ENV in 6.6 Using GNU gettext no longer needed | ||
|---|---|---|---|
| Product: | Documentation | Reporter: | dominique.goncalves |
| Component: | Books & Articles | Assignee: | Eitan Adler <eadler> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
dominique.goncalves
2012-12-30 11:00:01 UTC
Responsible Changed From-To: freebsd-doc->eadler I'll take it. 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@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> _______________________________________________ svn-doc-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-doc-all To unsubscribe, send any mail to "svn-doc-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |