svn commit: r322745 - stable/11/share/mk

Li-Wen Hsu lwhsu at FreeBSD.org
Mon Aug 21 10:26:12 UTC 2017


Author: lwhsu (ports committer)
Date: Mon Aug 21 10:26:11 2017
New Revision: 322745
URL: https://svnweb.freebsd.org/changeset/base/322745

Log:
  MFC r322434:
  
  Re-remove excess / for installing SYMLINKS
  
  This excess / was introduced in r280129, and fixed in r295230, but got
  re-introduced while merging another branch in r298107.
  
  Approved by:	gjb
  Differential Revision:	https://reviews.freebsd.org/D11995

Modified:
  stable/11/share/mk/bsd.links.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/mk/bsd.links.mk
==============================================================================
--- stable/11/share/mk/bsd.links.mk	Mon Aug 21 10:07:12 2017	(r322744)
+++ stable/11/share/mk/bsd.links.mk	Mon Aug 21 10:26:11 2017	(r322745)
@@ -20,5 +20,5 @@ _installlinks:
 .endfor
 .for s t in ${SYMLINKS}
 	@${ECHO} "${t} -> ${s}" ;\
-	${INSTALL_SYMLINK} ${TAG_ARGS} ${s} ${DESTDIR}/${t}
+	${INSTALL_SYMLINK} ${TAG_ARGS} ${s} ${DESTDIR}${t}
 .endfor


More information about the svn-src-all mailing list