Date: Mon, 17 Oct 2016 13:41:22 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424116 - head/net/ntop Message-ID: <201610171341.u9HDfMVS053732@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610171341.u9HDfMVS053732>