summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2011-01-16 01:07:31 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2011-01-16 01:07:31 +0000
commitade94b61ecc89cb6849723cd50be7b38268ee2bd (patch)
tree88b5a64370075a56e553c26fc716670b90a5d989 /textproc
parentWe no longer need to override ICONV_CHAR via CPPFLAGS, it is automatically (diff)
Fix the handling of CPPFLAGS and LDFLAGS by making them global settings
and then passing them to MAKE_ENV instead of just setting them in the context of the latter. PR: 153625 Feature safe: yes
Notes
Notes: svn path=/head/; revision=267873
Diffstat (limited to 'textproc')
-rw-r--r--textproc/py-hyperestraier/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/py-hyperestraier/Makefile b/textproc/py-hyperestraier/Makefile
index 037e411dcf5b..81f55261ffcf 100644
--- a/textproc/py-hyperestraier/Makefile
+++ b/textproc/py-hyperestraier/Makefile
@@ -23,8 +23,9 @@ INSTALLS_EGGINFO= yes
PYDISTUTILS_PKGNAME= HyperEstraier
PYDISTUTILS_PKGVERSION= 0.01
-MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
+CPPFLAGS+= -I${LOCALBASE}/include
+LDFLAGS+= -L${LOCALBASE}/lib
+MAKE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
pre-patch:
@${REINPLACE_CMD} -e 's|PYTHON = python|PYTHON = ${PYTHON_VERSION}|' \