aboutsummaryrefslogtreecommitdiffstats
path: root/www/cgi-lib
diff options
context:
space:
mode:
authorsteve <steve@FreeBSD.org>1999-12-23 05:23:37 +0800
committersteve <steve@FreeBSD.org>1999-12-23 05:23:37 +0800
commit82ad20728bf8d7498beedee1e64a3c0657f5206d (patch)
tree9cf114b071f2df83bb3ddd0e7ea65a2cf4ac0294 /www/cgi-lib
parent120c24a820c2dc20ec1a2e3d5780a106fc7d6948 (diff)
downloadfreebsd-ports-gnome-82ad20728bf8d7498beedee1e64a3c0657f5206d.tar.gz
freebsd-ports-gnome-82ad20728bf8d7498beedee1e64a3c0657f5206d.tar.zst
freebsd-ports-gnome-82ad20728bf8d7498beedee1e64a3c0657f5206d.zip
Be sure INSTALLDIR exists before we write into it.
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>