svn commit: r487199 - head/devel/staf

Serhii (Sergey) Kozlov skozlov at FreeBSD.org
Mon Dec 10 20:15:50 UTC 2018


Author: skozlov
Date: Mon Dec 10 20:15:49 2018
New Revision: 487199
URL: https://svnweb.freebsd.org/changeset/ports/487199

Log:
  devel/staf: Use ${RLN} instead of ${LN} in do-install
  
  Use ${RLN} instead of ${LN} as suggested by mat in
  https://reviews.freebsd.org/D18440#393057
  
  Approved By: sbruno (mentor)
  Differential Revision: https://reviews.freebsd.org/D18467

Modified:
  head/devel/staf/Makefile

Modified: head/devel/staf/Makefile
==============================================================================
--- head/devel/staf/Makefile	Mon Dec 10 20:14:37 2018	(r487198)
+++ head/devel/staf/Makefile	Mon Dec 10 20:15:49 2018	(r487199)
@@ -149,8 +149,8 @@ do-install:
 .for bin in ${STAF_BIN_FILES}
 	${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/bin/${bin} ${STAGEDIR}${PREFIX}/bin/
 .endfor
-	${LN} -s STAF ${STAGEDIR}${PREFIX}/bin/staf
-	${LN} -s FmtLog ${STAGEDIR}${PREFIX}/bin/fmtlog
+	${RLN} ${STAGEDIR}${PREFIX}/bin/STAF ${STAGEDIR}${PREFIX}/bin/staf
+	${RLN} ${STAGEDIR}${PREFIX}/bin/FmtLog ${STAGEDIR}${PREFIX}/bin/fmtlog
 .for lib in ${STAF_LIB_FILES}
 	${INSTALL_LIB} ${INSTALL_WRKSRC}/lib/${lib} ${STAGEDIR}${PREFIX}/lib/
 .endfor


More information about the svn-ports-all mailing list