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 /net-im | |
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 'net-im')
-rw-r--r-- | net-im/p5-Net-AIM/Makefile | 2 | ||||
-rw-r--r-- | net-im/pidgin-skype/Makefile | 4 | ||||
-rw-r--r-- | net-im/pwytter/Makefile | 2 | ||||
-rw-r--r-- | net-im/turpial/Makefile | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/net-im/p5-Net-AIM/Makefile b/net-im/p5-Net-AIM/Makefile index 3cb96f7b60ec..062de4c435ec 100644 --- a/net-im/p5-Net-AIM/Makefile +++ b/net-im/p5-Net-AIM/Makefile @@ -18,6 +18,6 @@ USES= perl5 USE_PERL5= configure post-extract: - @${RM} -f ${WRKSRC}/Net + @${RM} ${WRKSRC}/Net .include <bsd.port.mk> diff --git a/net-im/pidgin-skype/Makefile b/net-im/pidgin-skype/Makefile index c5d1f242153d..2f2616c04afb 100644 --- a/net-im/pidgin-skype/Makefile +++ b/net-im/pidgin-skype/Makefile @@ -25,11 +25,11 @@ USE_GNOME= glib20 # Note that googlecode.com is gone. build-tarball: ${DISTFILES} ${DISTFILES}: - ${RM} -rf ${WRKSRC} + ${RM} -r ${WRKSRC} svn export -r${PORTVERSION:E} \ http://skype4pidgin.googlecode.com/svn/trunk/ ${WRKSRC} tar -C ${WRKSRC}/.. -cvf - ${WRKSRC:T} | ${XZ_CMD} -vvc >${DISTFILES} || \ - { ${RM} -f ${DISTFILES} ; exit 1 ; } + { ${RM} ${DISTFILES} ; exit 1 ; } upload-tarball: build-tarball scp ${DISTFILES} freefall.freebsd.org:public_distfiles/ diff --git a/net-im/pwytter/Makefile b/net-im/pwytter/Makefile index 9ba9de46e0fd..bd01a6091122 100644 --- a/net-im/pwytter/Makefile +++ b/net-im/pwytter/Makefile @@ -28,7 +28,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} DOS2UNIX_GLOB= *.py post-patch: - @${RM} -rf ${WRKSRC}/twclient/simplejson + @${RM} -r ${WRKSRC}/twclient/simplejson @${REINPLACE_CMD} -e "s|'simplejson|}, #&|" \ -e "s|pwParam|pwCache','&|" \ -e "s|d\[p\]|d\['share/'+p\]|g" \ diff --git a/net-im/turpial/Makefile b/net-im/turpial/Makefile index dcde24c6dadb..d43caa3dc3d0 100644 --- a/net-im/turpial/Makefile +++ b/net-im/turpial/Makefile @@ -28,7 +28,7 @@ LOCALES_DIR= ca de eo es fr it ja pt_BR pt_PT ru_RU tr post-extract: # setuptools doesn't exclude these directories .for dir in unity gtk - @${RM} -Rf ${WRKSRC}/turpial/ui/${dir} + @${RM} -R ${WRKSRC}/turpial/ui/${dir} .endfor post-patch: |