diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2016-10-25 19:09:14 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2016-10-25 19:09:14 +0000 |
commit | b44706cc004efd66c805ed42d2f48e3e9ceee72d (patch) | |
tree | 9dc37d6444f87dba17d1385b85a4cef69bf394a0 /textproc/py3-libxml2 | |
parent | e9f31516fc8e70e6dc786b5ceb7aa083d481619c (diff) |
Do not hand roll PYTHON_CMD
Notes
Notes:
svn path=/head/; revision=424644
Diffstat (limited to 'textproc/py3-libxml2')
-rw-r--r-- | textproc/py3-libxml2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/py3-libxml2/Makefile b/textproc/py3-libxml2/Makefile index ad334737da6f..9926e1371f12 100644 --- a/textproc/py3-libxml2/Makefile +++ b/textproc/py3-libxml2/Makefile @@ -18,8 +18,8 @@ USE_GNOME+= libxml2 USES= python:3 gettext-runtime USE_PYTHON= autoplist distutils -CPPFLAGS+= `${PYTHON_VERSION}-config --cflags` -LDFLAGS+= -L${LOCALBASE}/lib `${PYTHON_VERSION}-config --libs` +CPPFLAGS+= `${PYTHON_CMD}-config --cflags` +LDFLAGS+= -L${LOCALBASE}/lib `${PYTHON_CMD}-config --libs` CONFIGURE_ARGS= --with-iconv=${ICONV_PREFIX} \ --with-html-dir=${PREFIX}/share/doc \ --with-html-subdir=${PORTNAME} \ |