diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2014-06-18 23:52:50 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2014-06-18 23:52:50 +0800 |
commit | 66693bd1809e9e20a95a8ab7a00f7c434d0b1ddb (patch) | |
tree | cb6cfe1866ec155d77991f4fcd7c4cd3a497414d /audio | |
parent | 62ceee9d93ad924b148f64c5b76106c703b6dd31 (diff) | |
download | freebsd-ports-gnome-66693bd1809e9e20a95a8ab7a00f7c434d0b1ddb.tar.gz freebsd-ports-gnome-66693bd1809e9e20a95a8ab7a00f7c434d0b1ddb.tar.zst freebsd-ports-gnome-66693bd1809e9e20a95a8ab7a00f7c434d0b1ddb.zip |
- Strip shared library in post-install:
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libfishsound/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/libfishsound/Makefile b/audio/libfishsound/Makefile index e87a48197455..e1182114ffb0 100644 --- a/audio/libfishsound/Makefile +++ b/audio/libfishsound/Makefile @@ -21,7 +21,7 @@ OPTIONS_DEFINE= DOCS DOXYGEN GNU_CONFIGURE= yes USE_LDCONFIG= yes -USES= pathfix pkgconfig libtool +USES= libtool pathfix pkgconfig .include <bsd.port.options.mk> @@ -35,7 +35,7 @@ post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS = / s| doc||' ${WRKSRC}/Makefile.in .endif -post-build: - @${STRIP_CMD} ${WRKSRC}/src/libfishsound/.libs/libfishsound.so +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfishsound.so.1.3.0 .include <bsd.port.mk> |