svn commit: r392609 - head/audio/aubio

Alexey Dokuchaev danfe at FreeBSD.org
Tue Jul 21 02:00:41 UTC 2015


Author: danfe
Date: Tue Jul 21 02:00:40 2015
New Revision: 392609
URL: https://svnweb.freebsd.org/changeset/ports/392609

Log:
  Oops, reverse the stripping condition so it works as intended.

Modified:
  head/audio/aubio/Makefile

Modified: head/audio/aubio/Makefile
==============================================================================
--- head/audio/aubio/Makefile	Tue Jul 21 01:52:25 2015	(r392608)
+++ head/audio/aubio/Makefile	Tue Jul 21 02:00:40 2015	(r392609)
@@ -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


More information about the svn-ports-all mailing list