1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

- Add CHANGES entry on recent LDFLAGS update

This commit is contained in:
Dmitry Marakasov 2011-09-26 19:53:10 +00:00
parent 20db9d701f
commit c96f0f4615
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=282433

19
CHANGES
View File

@ -10,6 +10,25 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
20110923:
AUTHOR: amdmi3@FreeBSD.org
* LDFLAGS is now passed to both the configure and make environments,
and should be handled just like CPPFLAGS (see previous entry).
Summarizing both LDFLAGS and CPPFLAGS changes, where you would
have used
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
now just use
CPPFLAGS+= "-I${LOCALBASE}/include"
LDFLAGS+= "-L${LOCALBASE}/include"
Note that it's advised to append these variables (+=) instead
of overriding (=) to allow customization by user.
20110320:
AUTHOR: gerald@FreeBSD.org