diff options
author | danfe <danfe@FreeBSD.org> | 2015-07-21 10:00:40 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2015-07-21 10:00:40 +0800 |
commit | d217df31bc33721d5b6632834fb3f9261de38c24 (patch) | |
tree | 9a41477094ffe051680a189a8e80a385b273079b /audio/aubio | |
parent | ebde0aaecfc952d650375a8debdc67aebb22c862 (diff) | |
download | freebsd-ports-graphics-d217df31bc33721d5b6632834fb3f9261de38c24.tar.gz freebsd-ports-graphics-d217df31bc33721d5b6632834fb3f9261de38c24.tar.zst freebsd-ports-graphics-d217df31bc33721d5b6632834fb3f9261de38c24.zip |
Oops, reverse the stripping condition so it works as intended.
Diffstat (limited to 'audio/aubio')
-rw-r--r-- | audio/aubio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/aubio/Makefile b/audio/aubio/Makefile index 15d040b18b5..07a8e16a649 100644 --- a/audio/aubio/Makefile +++ b/audio/aubio/Makefile @@ -72,7 +72,7 @@ post-patch: @${REINPLACE_CMD} -e '/pkgconfig/s,$${LIBDIR},&data,' \ ${WRKSRC}/waflib/TaskGen.py -.if defined(WITH_DEBUG) && !defined(WITHOUT_DEBUG) && !defined(INSTALL_STRIPPED) +.if !defined(WITH_DEBUG) || defined(WITHOUT_DEBUG) || defined(INSTALL_STRIPPED) post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so . for b in mfcc notes onset pitch quiet track |