svn commit: r424116 - head/net/ntop

Mathieu Arnold mat at FreeBSD.org
Mon Oct 17 13:41:23 UTC 2016


Author: mat
Date: Mon Oct 17 13:41:22 2016
New Revision: 424116
URL: https://svnweb.freebsd.org/changeset/ports/424116

Log:
  Don't use install-strip, it tries to strip .a files, and fails.
  
  Sponsored by:	Absolight

Modified:
  head/net/ntop/Makefile   (contents, props changed)

Modified: head/net/ntop/Makefile
==============================================================================
--- head/net/ntop/Makefile	Mon Oct 17 13:22:13 2016	(r424115)
+++ head/net/ntop/Makefile	Mon Oct 17 13:41:22 2016	(r424116)
@@ -34,7 +34,6 @@ CONFIGURE_ARGS=	--localstatedir=${DBDIR}
 		--with-ossl-root=${OPENSSLBASE} \
 		--with-gdbm-root=${LOCALBASE} \
 		--with-zlib-root=/usr
-INSTALL_TARGET=	install-strip
 
 CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib
@@ -73,6 +72,6 @@ pre-install:
 	@cd ${WRKSRC} && ${MAKE_CMD} dnetter
 
 post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ntop/plugins/*.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so ${STAGEDIR}${PREFIX}/lib/ntop/plugins/*.so
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list