diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-03-04 22:41:12 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-03-04 22:41:12 +0000 |
commit | 2bc905398d88fd3187ec27b32eebd2566cb86695 (patch) | |
tree | 93a58b1bc178aaaa8313ff6f3284516325283356 /www/mod_php5 | |
parent | Switch from AWK to SED for CFLAGS sanitization. It is cleaner, (diff) |
Solve the multiple post-extract targets problem.
Notes
Notes:
svn path=/head/; revision=39062
Diffstat (limited to 'www/mod_php5')
-rw-r--r-- | www/mod_php5/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile index ee3cc9e41334..a467a671072a 100644 --- a/www/mod_php5/Makefile +++ b/www/mod_php5/Makefile @@ -62,8 +62,6 @@ PLIST_SUB= PHPDOCDIR=${PHPDOCDIR:S/^${PREFIX}\///} \ pre-fetch: @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.php -post-extract: post-extract-jstring post-extract-ming - post-install: .if !defined(STANDALONE) @${ECHO} "Restarting Apache..." @@ -103,4 +101,12 @@ post-clean: .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif +post-extract: +.if target(post-extract-jstring) + ${MAKE} post-extract-jstring +.endif +.if target(post-extract-ming) + ${MAKE} post-extract-ming +.endif + .include <bsd.port.mk> |