diff options
author | will <will@FreeBSD.org> | 2001-01-01 16:41:13 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-01-01 16:41:13 +0800 |
commit | 9230a7d7decf590a0608666ce606b4b3b6610829 (patch) | |
tree | 34f8f06c3367617aa6fdf6ecf6307fff8d7399da /www | |
parent | 27a28f3ee6d672820cff8e029b84a1e7849bc043 (diff) | |
download | freebsd-ports-gnome-9230a7d7decf590a0608666ce606b4b3b6610829.tar.gz freebsd-ports-gnome-9230a7d7decf590a0608666ce606b4b3b6610829.tar.zst freebsd-ports-gnome-9230a7d7decf590a0608666ce606b4b3b6610829.zip |
Use make(1)'s builtin ?= var operator.
Diffstat (limited to 'www')
-rw-r--r-- | www/p5-Apache/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/www/p5-Apache/Makefile b/www/p5-Apache/Makefile index a929133fd067..336e90afd92b 100644 --- a/www/p5-Apache/Makefile +++ b/www/p5-Apache/Makefile @@ -15,12 +15,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= ports@FreeBSD.org -.if !defined(APACHE_PORT) -APACHE_PORT=apache13 -.endif BUILD_DEPENDS= ${PREFIX}/sbin/apxs:${PORTSDIR}/www/${APACHE_PORT} \ ${PREFIX}/bin/lwp-download:${PORTSDIR}/www/p5-libwww +APACHE_PORT?= apache13 USE_PERL5= yes MAN3= Apache.3 \ Apache::Constants.3 \ |