diff options
author | dirk <dirk@FreeBSD.org> | 1999-08-30 10:56:07 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 1999-08-30 10:56:07 +0000 |
commit | ef36127bae599c3c689edd3f3e97beb5d36177ed (patch) | |
tree | 13861852fc88f28bceac75dfed0f38a341c7afd1 /www/mod_php5/Makefile | |
parent | 8cccc9b9c5290475befe8e37bd054974417b3417 (diff) | |
download | FreeBSD-ports-ef36127bae599c3c689edd3f3e97beb5d36177ed.zip FreeBSD-ports-ef36127bae599c3c689edd3f3e97beb5d36177ed.tar.gz |
Make sure directory ${WRKDIRPREFIX}${CURDIR} exists before
touching files in that directory. Problem only occurs when
${WRKDIRPREFIX} is set.
Found by: bento.freebsd.org
Diffstat (limited to 'www/mod_php5/Makefile')
-rw-r--r-- | www/mod_php5/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile index c09e639..03e39d3 100644 --- a/www/mod_php5/Makefile +++ b/www/mod_php5/Makefile @@ -3,7 +3,7 @@ # Date created: So 21 Jun 1998 16:09:39 CEST # Whom: Stefan Herrmann <stefan@asterix.webaffairs.net> # -# $Id: Makefile,v 1.91 1999/08/22 19:00:28 mharo Exp $ +# $Id: Makefile,v 1.92 1999/08/26 21:18:14 dirk Exp $ # DISTNAME= apache_${VERSION_APACHE} @@ -86,7 +86,8 @@ CFLAGS+= -O6 -funroll-loops -fstrength-reduce -fomit-frame-pointer \ CONFIGURE_ENV= OPTIM='${OPTIM}' LIBS='-L${PREFIX}/lib' SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ - TOUCH="${TOUCH}" + TOUCH="${TOUCH}" \ + MKDIR="${MKDIR}" INSTALL_TARGET= install-quiet |