1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

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
This commit is contained in:
Serhii (Sergey) Kozlov 2018-12-10 20:15:49 +00:00
parent fa85596370
commit 03960a15e4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=487199

View File

@ -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