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 /lang/gcc6-devel | |
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 'lang/gcc6-devel')
-rw-r--r-- | lang/gcc6-devel/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index c6bb2a95991a..223078a68cc0 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -155,7 +155,7 @@ pre-everything:: pre-configure: cd ${WRKSRC} ; contrib/gcc_update --touch - @${RM} -f ${WRKSRC}/gcc/*/*.info* + @${RM} ${WRKSRC}/gcc/*/*.info* .if defined(MAINTAINER_MODE) full-regression-test: build @@ -164,11 +164,11 @@ full-regression-test: build .endif post-stage: - ${RM} -f ${STAGEDIR}${PREFIX}/man/man7/* - ${RM} -f ${STAGEDIR}${PREFIX}/bin/rebuild-gcj-db${SUFFIX} \ + ${RM} ${STAGEDIR}${PREFIX}/man/man7/* + ${RM} ${STAGEDIR}${PREFIX}/bin/rebuild-gcj-db${SUFFIX} \ ${STAGEDIR}${PREFIX}/man/man1/rebuild-gcj-db${SUFFIX}.1 # Add target libraries and include files to packaging list. - ${RM} -f ${WRKDIR}/PLIST.lib + ${RM} ${WRKDIR}/PLIST.lib .for d in ${TARGLIB:S/^${PREFIX}\///} ${LIBEXEC:S/^${PREFIX}\///} include/gcj include/gnu include/java include/javax cd ${STAGEDIR}${PREFIX} ; if [ -d $d ]; then \ ${FIND} $d -type f -o -type l >>${WRKDIR}/PLIST.lib ;\ |