diff options
author | tijl <tijl@FreeBSD.org> | 2017-02-15 23:07:48 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2017-02-15 23:07:48 +0800 |
commit | bc4f8e1acd626cb044317f6f1e083020d42b2cda (patch) | |
tree | 097d3c6a42f613a6aa3090174a4bab85ad84aae7 | |
parent | 036326f3aca75253f8d88cdeff58d53fb9b27513 (diff) | |
download | freebsd-ports-gnome-bc4f8e1acd626cb044317f6f1e083020d42b2cda.tar.gz freebsd-ports-gnome-bc4f8e1acd626cb044317f6f1e083020d42b2cda.tar.zst freebsd-ports-gnome-bc4f8e1acd626cb044317f6f1e083020d42b2cda.zip |
Remove -fPIC. The problem was in textproc/ltxml.
-rw-r--r-- | textproc/py-ltxml/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/textproc/py-ltxml/Makefile b/textproc/py-ltxml/Makefile index 75ff8cc7d53f..3dde7a13f4c6 100644 --- a/textproc/py-ltxml/Makefile +++ b/textproc/py-ltxml/Makefile @@ -3,7 +3,7 @@ PORTNAME= ltxml PORTVERSION= 1.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc python MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/LTXML/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,9 +21,6 @@ USES= python USE_PYTHON= distutils autoplist USE_LDCONFIG= yes -CFLAGS_aarch64= -fPIC -CFLAGS_amd64= -fPIC - DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} PORTDOCS= 00README @@ -31,8 +28,6 @@ PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES -.include <bsd.port.pre.mk> - post-install: @${STRIP_CMD} \ ${STAGEDIR}${PYTHON}${PYTHON_SITELIBDIR}/PyLTXML/LTXMLinter.so @@ -45,4 +40,4 @@ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/example/* ${STAGEDIR}${EXAMPLESDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |