diff options
author | Steve Price <steve@FreeBSD.org> | 1999-12-22 21:23:37 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-12-22 21:23:37 +0000 |
commit | 5b50e714985da7a9d820c2d67a87c00d53193a2c (patch) | |
tree | e4ec367b74d45fd07ada193a2270534ebf5ef9e0 /www/cgi-lib | |
parent | b0e1f1732c8040953143728913a5f6494938060a (diff) | |
download | ports-5b50e714985da7a9d820c2d67a87c00d53193a2c.tar.gz ports-5b50e714985da7a9d820c2d67a87c00d53193a2c.zip |
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/Makefile | 3 |
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> |