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 /net/linux-f10-nss_ldap/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 'net/linux-f10-nss_ldap/Makefile')
-rw-r--r-- | net/linux-f10-nss_ldap/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/linux-f10-nss_ldap/Makefile b/net/linux-f10-nss_ldap/Makefile index 0b2e1ead6273..e601f905c485 100644 --- a/net/linux-f10-nss_ldap/Makefile +++ b/net/linux-f10-nss_ldap/Makefile @@ -48,11 +48,11 @@ post-patch: fi .if !${PORT_OPTIONS:MPAM} @if [ -f ${WRKSRC}/lib/security/pam_ldap.so ]; then \ - ${RM} -rf ${WRKSRC}/lib/; \ + ${RM} -r ${WRKSRC}/lib/; \ fi @if [ -f ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/COPYING.pam_ldap ]; then \ ${RM} ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/*.pam*; \ - ${RM} -rf ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/pam.d; \ + ${RM} -r ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/pam.d; \ fi @if [ -f ${WRKSRC}/usr/share/man/man5/pam_ldap.5.gz ]; then \ ${RM} ${WRKSRC}/usr/share/man/man5/pam_ldap.5.gz; \ @@ -60,7 +60,7 @@ post-patch: .else .if !${PORT_OPTIONS:MDOCS} @if [ -d ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/pam.d ]; then \ - ${RM} -rf ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/pam.d/; \ + ${RM} -r ${WRKSRC}/usr/share/doc/${PORTNAME}-${PORTVERSION}/pam.d/; \ fi .endif .endif |