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 /chinese | |
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 'chinese')
-rw-r--r-- | chinese/cnprint/Makefile | 2 | ||||
-rw-r--r-- | chinese/fireflyttf/Makefile | 2 | ||||
-rw-r--r-- | chinese/phpbb-tw/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/chinese/cnprint/Makefile b/chinese/cnprint/Makefile index b6824bf51976..53af8e06825b 100644 --- a/chinese/cnprint/Makefile +++ b/chinese/cnprint/Makefile @@ -31,7 +31,7 @@ do-extract: .endfor cd ${WRKSRC} ; \ ${TAR} pzvxf hbf.tar.gz ; ${MV} hbf/* . ; \ - ${RM} -fr hbf ; \ + ${RM} -r hbf ; \ ${GUNZIP_CMD} *.gz || ${TRUE} post-patch: diff --git a/chinese/fireflyttf/Makefile b/chinese/fireflyttf/Makefile index 79d45646a871..7d9fddb83afe 100644 --- a/chinese/fireflyttf/Makefile +++ b/chinese/fireflyttf/Makefile @@ -37,7 +37,7 @@ post-extract: @${TAR} -C ${WRKSRC} -zxf ${DISTDIR}/fireflysung-1.3.0p1.tar.gz \ fireflysung-1.3.0p1/fireflysung.ttf @${MV} ${WRKSRC}/fireflysung-1.3.0p1/fireflysung.ttf ${WRKSRC} - @${RM} -rf ${WRKSRC}/fireflysung-1.3.0p1 + @${RM} -r ${WRKSRC}/fireflysung-1.3.0p1 .else ${TRUE} .endif diff --git a/chinese/phpbb-tw/Makefile b/chinese/phpbb-tw/Makefile index ad1bf6c8b1de..b9dfdf99a35e 100644 --- a/chinese/phpbb-tw/Makefile +++ b/chinese/phpbb-tw/Makefile @@ -70,7 +70,7 @@ pre-everything:: post-patch: @ ${REINPLACE_CMD} -e "s#\.\./templates#/${PHPBB_URL}/templates#" \ ${WRKSRC}/docs/*.html - @${RM} -f `${FIND} ${WRKSRC} -name '*.orig'` + @${RM} `${FIND} ${WRKSRC} -name '*.orig'` do-install: @ ${MKDIR} -m 0775 ${STAGEDIR}${PREFIX}/${PHPBBDIR} |