Date: Mon, 10 Dec 2018 20:15:49 +0000 (UTC) From: "Serhii (Sergey) Kozlov" <skozlov@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487199 - head/devel/staf Message-ID: <201812102015.wBAKFn7V037001@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812102015.wBAKFn7V037001>