diff options
author | mat <mat@FreeBSD.org> | 2016-10-21 20:51:40 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-10-21 20:51:40 +0800 |
commit | 316cf6317eb621c4567d3b8e337fa9ba3097ea56 (patch) | |
tree | 5b70e6802d6d9dfe8b4564fc4f09f2d0a5156343 /misc/compat5x | |
parent | 5b45061f15be292aed8143f0ec15163936e69baf (diff) | |
download | freebsd-ports-gnome-316cf6317eb621c4567d3b8e337fa9ba3097ea56.tar.gz freebsd-ports-gnome-316cf6317eb621c4567d3b8e337fa9ba3097ea56.tar.zst freebsd-ports-gnome-316cf6317eb621c4567d3b8e337fa9ba3097ea56.zip |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Diffstat (limited to 'misc/compat5x')
-rw-r--r-- | misc/compat5x/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/compat5x/Makefile b/misc/compat5x/Makefile index 1025bc78ba57..b1b1a149a4d8 100644 --- a/misc/compat5x/Makefile +++ b/misc/compat5x/Makefile @@ -54,12 +54,12 @@ PLIST_SUB+= SPARC64="@comment " do-install: @${MKDIR} -m 0755 ${STAGEDIR}${TARGET_DIR} - ${RM} -f ${WRKSRC}/libpthread.so.1 + ${RM} ${WRKSRC}/libpthread.so.1 (cd ${STAGEDIR}${TARGET_DIR} && ${LN} -sf libthr.so.1 libpthread.so.1) (cd ${WRKSRC} && ${INSTALL_DATA} *.so.* ${STAGEDIR}${TARGET_DIR}) .if ${ARCH} == amd64 @${MKDIR} ${STAGEDIR}${TARGET32_DIR} - ${RM} -f ${WRKSRC}/lib32/libpthread.so.1 + ${RM} ${WRKSRC}/lib32/libpthread.so.1 (cd ${STAGEDIR}${TARGET32_DIR} && ${LN} -sf libthr.so.1 libpthread.so.1) (cd ${WRKSRC}/lib32 && ${INSTALL_DATA} *.so.* ${STAGEDIR}${TARGET32_DIR}) .endif |