aboutsummaryrefslogtreecommitdiff
path: root/www/fcgi/Makefile
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2014-07-07 22:32:02 +0000
committerMatthias Andree <mandree@FreeBSD.org>2014-07-07 22:32:02 +0000
commit99fffb966baf00ab98bb3285c64bb462d0f73d61 (patch)
tree21e234ed4a202d8ee3c82ff4d2aab56f74291768 /www/fcgi/Makefile
parent253072f7e99c5efce9eb71b3e148d1ae694d0099 (diff)
downloadports-99fffb966baf00ab98bb3285c64bb462d0f73d61.tar.gz
ports-99fffb966baf00ab98bb3285c64bb462d0f73d61.zip
Fix up recent commit [1]:
- Fix linking on systems that require listing all DSOs explicitly, to allow build on 10.0+ - this adds fcgi/files/patch-examples__Makefile.in - upstream should adjust his examples/Makefile.am accordingly. - Use ${RM} -f to avoid rm query if building as unprivileged user. PR: 191664 [1]
Notes
Notes: svn path=/head/; revision=361138
Diffstat (limited to 'www/fcgi/Makefile')
-rw-r--r--www/fcgi/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/fcgi/Makefile b/www/fcgi/Makefile
index defcf391fd84..48a00725cdb9 100644
--- a/www/fcgi/Makefile
+++ b/www/fcgi/Makefile
@@ -3,7 +3,7 @@
PORTNAME= fcgi
PORTVERSION= 2.4.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://www.fastcgi.com/dist/ \
http://www.skysmurf.nl/comp/FreeBSD/distfiles/
@@ -33,7 +33,7 @@ post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
- @${RM} ${STAGEDIR}${DOCSDIR}/*.[13]
+ @${RM} -f ${STAGEDIR}${DOCSDIR}/*.[13]
.endif
.include <bsd.port.mk>