From owner-svn-ports-head@freebsd.org Tue Mar 14 15:21:04 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B78EED0C21A; Tue, 14 Mar 2017 15:21:04 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 871D9AF8; Tue, 14 Mar 2017 15:21:04 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2EFL3Lr000707; Tue, 14 Mar 2017 15:21:03 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2EFL3fS000706; Tue, 14 Mar 2017 15:21:03 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201703141521.v2EFL3fS000706@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 14 Mar 2017 15:21:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436160 - head/security/sha1collisiondetection X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2017 15:21:04 -0000 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