diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-10-21 12:51:40 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-10-21 12:51:40 +0000 |
commit | eabbfd75e30148b8f686899a638b93547ca83485 (patch) | |
tree | 5b70e6802d6d9dfe8b4564fc4f09f2d0a5156343 /www/calendarserver/Makefile | |
parent | f51fe6e12cc1833af15f8086b22a92af9f8aa4b0 (diff) | |
download | freebsd-ports-eabbfd75e30148b8f686899a638b93547ca83485.zip |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Diffstat (limited to 'www/calendarserver/Makefile')
-rw-r--r-- | www/calendarserver/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/calendarserver/Makefile b/www/calendarserver/Makefile index 98e799066a59..280cfaf36095 100644 --- a/www/calendarserver/Makefile +++ b/www/calendarserver/Makefile @@ -63,12 +63,12 @@ GROUPS= ${CALDAVD_USER} maint-gen-distfile: @if [ ! -f "${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}" ] ; then \ - ${MKDIR} ${WRKDIR} ; cd ${WRKDIR} ; ${RM} -Rf ${WRKDIR}/${DISTNAME} ; \ + ${MKDIR} ${WRKDIR} ; cd ${WRKDIR} ; ${RM} -R ${WRKDIR}/${DISTNAME} ; \ ${ECHO_MSG} "=> Checking out CalendarServer from svn.calendarserver.org/..."; \ ${SVN_CMD1} ${SVN_REPOSITORY_URL}/${SVN_TAG1} > /dev/null ; \ ${ECHO_MSG} "=> Creating tar archive ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}"; \ cd ${WRKDIR} ; tar -czf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${DISTNAME} ; \ - ${RM} -Rf ${WRKDIR}/${DISTNAME} ; \ + ${RM} -R ${WRKDIR}/${DISTNAME} ; \ else \ ${ECHO_MSG} "===> ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} found." ; \ fi |