summaryrefslogtreecommitdiff
path: root/www/cgi-lib
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1999-12-22 21:23:37 +0000
committerSteve Price <steve@FreeBSD.org>1999-12-22 21:23:37 +0000
commit5b50e714985da7a9d820c2d67a87c00d53193a2c (patch)
treee4ec367b74d45fd07ada193a2270534ebf5ef9e0 /www/cgi-lib
parentUpdate to version 0.1.6 (diff)
Be sure INSTALLDIR exists before we write into it.
Notes
Notes: svn path=/head/; revision=23840
Diffstat (limited to 'www/cgi-lib')
-rw-r--r--www/cgi-lib/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/www/cgi-lib/Makefile b/www/cgi-lib/Makefile
index 86137374a93d..c5f604369ff8 100644
--- a/www/cgi-lib/Makefile
+++ b/www/cgi-lib/Makefile
@@ -24,6 +24,7 @@ USE_PERL5= yes
INSTALLDIR= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}
do-install:
- ${INSTALL_SCRIPT} ${WRKDIR}/cgi-lib.pl ${INSTALLDIR}/
+ ${MKDIR} ${INSTALLDIR}
+ ${INSTALL_SCRIPT} ${WRKDIR}/cgi-lib.pl ${INSTALLDIR}
.include <bsd.port.mk>