Date: Tue, 14 Mar 2017 15:21:03 +0000 (UTC) From: Joseph Mingrone <jrm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436160 - head/security/sha1collisiondetection Message-ID: <201703141521.v2EFL3fS000706@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jrm Date: Tue Mar 14 15:21:03 2017 New Revision: 436160 URL: https://svnweb.freebsd.org/changeset/ports/436160 Log: security/sha1collisiondetection: Remove redundant library entry from ALL_TARGET and do not add ./ when creating symbolic links. Reported by: danfe mat Differential Revision: https://reviews.freebsd.org/D9998 Modified: head/security/sha1collisiondetection/Makefile Modified: head/security/sha1collisiondetection/Makefile ============================================================================== --- head/security/sha1collisiondetection/Makefile Tue Mar 14 15:18:50 2017 (r436159) +++ head/security/sha1collisiondetection/Makefile Tue Mar 14 15:21:03 2017 (r436160) @@ -15,7 +15,7 @@ USE_GITHUB= yes GH_ACCOUNT= cr-marcstevens USE_LDCONFIG= yes -ALL_TARGET= library tools +ALL_TARGET= tools USES= gmake libtool:build @@ -30,7 +30,7 @@ do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/include/sha1dc ${INSTALL_DATA} ${WRKSRC}/lib/sha1.h ${STAGEDIR}${PREFIX}/include/sha1dc ${INSTALL_LIB} ${WRKSRC}/bin/.libs/libsha1detectcoll.so.0.0.0 ${STAGEDIR}${PREFIX}/lib - ${LN} -sf ./libsha1detectcoll.so.0.0.0 ${STAGEDIR}${PREFIX}/lib/libsha1detectcoll.so - ${LN} -sf ./libsha1detectcoll.so.0.0.0 ${STAGEDIR}${PREFIX}/lib/libsha1detectcoll.so.0 + ${LN} -sf libsha1detectcoll.so.0.0.0 ${STAGEDIR}${PREFIX}/lib/libsha1detectcoll.so + ${LN} -sf libsha1detectcoll.so.0.0.0 ${STAGEDIR}${PREFIX}/lib/libsha1detectcoll.so.0 .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703141521.v2EFL3fS000706>