diff options
author | itetcu <itetcu@FreeBSD.org> | 2009-04-08 15:43:28 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2009-04-08 15:43:28 +0800 |
commit | 8aab878e77e60d606c778a06e1cef7aa30d38bda (patch) | |
tree | cd71bf171de8ed55accd690127a3e0cfff4b07af /www | |
parent | 2c9f5440eb2204978f3d133223401d445618cf29 (diff) | |
download | freebsd-ports-gnome-8aab878e77e60d606c778a06e1cef7aa30d38bda.tar.gz freebsd-ports-gnome-8aab878e77e60d606c778a06e1cef7aa30d38bda.tar.zst freebsd-ports-gnome-8aab878e77e60d606c778a06e1cef7aa30d38bda.zip |
Fix plist with -DNOPORT*.
Prompted by: QAT QA run
Approved by: maintainer timeout on QATMail
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_bw/Makefile | 2 | ||||
-rw-r--r-- | www/mod_curb/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/www/mod_bw/Makefile b/www/mod_bw/Makefile index cd6f7d96ee8e..731f16bbc261 100644 --- a/www/mod_bw/Makefile +++ b/www/mod_bw/Makefile @@ -24,8 +24,10 @@ SRC_FILE= mod_bw.c PORTDOCS= LICENSE mod_bw.txt post-install: +.ifndef NOPORTDOCS @${MKDIR} ${DOCSDIR} @cd ${WRKSRC} && \ ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.endif .include <bsd.port.mk> diff --git a/www/mod_curb/Makefile b/www/mod_curb/Makefile index 37dc98653a4a..08fb97f9f450 100644 --- a/www/mod_curb/Makefile +++ b/www/mod_curb/Makefile @@ -22,7 +22,9 @@ AP_GENPLIST= YES PORTDOCS= README post-install: +.ifndef NOPORTDOCS @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif .include <bsd.port.mk> |