diff options
author | gerald <gerald@FreeBSD.org> | 2011-06-07 07:43:58 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2011-06-07 07:43:58 +0800 |
commit | dcdab7b7190c2f8d35a5abbc54914dc3263edfbb (patch) | |
tree | ed4be59cb353de0204eebec4bb15a31fe07ad7d8 /CHANGES | |
parent | 59a0d703e7d46f6249cbdc643bfe1bbcdba939db (diff) | |
download | freebsd-ports-gnome-dcdab7b7190c2f8d35a5abbc54914dc3263edfbb.tar.gz freebsd-ports-gnome-dcdab7b7190c2f8d35a5abbc54914dc3263edfbb.tar.zst freebsd-ports-gnome-dcdab7b7190c2f8d35a5abbc54914dc3263edfbb.zip |
Describe how CPPFLAGS is now passed to both the configure and make
environments, so we do not need to manually touch CONFIGURE_ENV and
MAKE_ENV any more in many cases.
Discussed with: portmgr
PR: 153625
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -10,6 +10,21 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20110320: +AUTHOR: gerald@FreeBSD.org + + * CPPFLAGS is now passed to both the configure and make environments, + so this no longer needs to happen in individual ports by adding this + to CONFIGURE_ENV or MAKE_ENV. Rather, just set CPPFLAGS in the port + Makefile (if necessary). + + For example, where you would have used + CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" + MAKE_ENV= SOMETHING=foo CPPFLAGS="-I${LOCALBASE}/include" + now just use + CPPFLAGS= "-I${LOCALBASE}/include" + MAKE_ENV SOMETHING=foo + 20100831: AUTHOR: autotools@FreeBSD.org |