diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-23 22:12:21 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-23 22:12:21 +0800 |
commit | a78e65c7ce031ff755e67c374ba44f2902e328a8 (patch) | |
tree | 9b3a058ca6c0a1f768f8e1547708fa88b903579d /graphics | |
parent | 1797d282566a8d7cdc639004dd655aae358b77e3 (diff) | |
download | freebsd-ports-gnome-a78e65c7ce031ff755e67c374ba44f2902e328a8.tar.gz freebsd-ports-gnome-a78e65c7ce031ff755e67c374ba44f2902e328a8.tar.zst freebsd-ports-gnome-a78e65c7ce031ff755e67c374ba44f2902e328a8.zip |
- Fix library stripping
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gauche-gl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/gauche-gl/Makefile b/graphics/gauche-gl/Makefile index 619017505cbd..5968d1434b16 100644 --- a/graphics/gauche-gl/Makefile +++ b/graphics/gauche-gl/Makefile @@ -3,7 +3,7 @@ PORTNAME= gl PORTVERSION= 0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics scheme MASTER_SITES= SF/gauche/Gauche-gl PKGNAMEPREFIX= gauche- @@ -57,6 +57,7 @@ do-install: @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR}) @(cd ${STAGEDIR}${PREFIX}/lib/gauche-0.9/site/${CONFIGURE_TARGET} && \ - ${STRIP_CMD} libgauche-*.so) + ${CHMOD} u+w libgauche-*.so && ${STRIP_CMD} libgauche-*.so && \ + ${CHMOD} u-w libgauche-*.so) .include <bsd.port.mk> |