diff options
author | agc <agc> | 2000-02-15 09:26:12 +0000 |
---|---|---|
committer | agc <agc> | 2000-02-15 09:26:12 +0000 |
commit | 12e06e19ebf907042f4c8a55eb78ef23711edada (patch) | |
tree | 4e357f9aabe4d1c5fb73d87778d5e0e3e135ff1f /www/ap-ssl | |
parent | 7d5f7e3cd19c4453f97e98fcf15a5029891c00a8 (diff) | |
download | pkgsrc-12e06e19ebf907042f4c8a55eb78ef23711edada.tar.gz |
When multi-line dependencies occur, use a "DEPENDS+= package" format
for each of the continuation lines, rather than using backslashes to
continue a single, long definition. This makes it much easier to spot
pre-requisite packages and other dependencies.
Diffstat (limited to 'www/ap-ssl')
-rw-r--r-- | www/ap-ssl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/ap-ssl/Makefile b/www/ap-ssl/Makefile index bb9339a8f30..249dfdf5af1 100644 --- a/www/ap-ssl/Makefile +++ b/www/ap-ssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 1999/12/07 20:15:16 bad Exp $ +# $NetBSD: Makefile,v 1.12 2000/02/15 09:26:24 agc Exp $ # DISTNAME= mod_ssl-2.4.8-1.3.9 @@ -9,8 +9,8 @@ MASTER_SITES= ftp://ftp.modssl.org/source/ MAINTAINER= tv@netbsd.org HOMEPAGE= http://www.modssl.org/ -DEPENDS= openssl-0.9.4:../../security/openssl \ - apache-1.3.9p0:../../www/apache +DEPENDS= openssl-0.9.4:../../security/openssl +DEPENDS+= apache-1.3.9p0:../../www/apache # For "apxs": BUILD_DEPENDS= ${LOCALBASE}/bin/perl:../../lang/perl5 |