diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-06-16 22:27:33 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-06-16 22:27:33 +0800 |
commit | 159e2e566d3496dac7adb01215d8decab62e8e19 (patch) | |
tree | a01effe350174691249f8081ffbc5e74cd7887fd /textproc | |
parent | 57f4581f396be2281fe9d0a8d76a9cbb9804a447 (diff) | |
download | freebsd-ports-graphics-159e2e566d3496dac7adb01215d8decab62e8e19.tar.gz freebsd-ports-graphics-159e2e566d3496dac7adb01215d8decab62e8e19.tar.zst freebsd-ports-graphics-159e2e566d3496dac7adb01215d8decab62e8e19.zip |
- Allow to strip shared library as regular user
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-XML-LibXML/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/textproc/p5-XML-LibXML/Makefile b/textproc/p5-XML-LibXML/Makefile index f545fe403da..5529f82fbd8 100644 --- a/textproc/p5-XML-LibXML/Makefile +++ b/textproc/p5-XML-LibXML/Makefile @@ -29,7 +29,9 @@ PKGDEINSTALL= ${PKGINSTALL} CONFLICTS= p5-XML-LibXML-XPathContext-[0-9]* p5-XML-LibXML-Common-[0-9]* -post-stage: +post-install: + ${CHMOD} u+w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/XML/LibXML/LibXML.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/XML/LibXML/LibXML.so + ${CHMOD} u-w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/XML/LibXML/LibXML.so .include <bsd.port.mk> |