diff options
author | jnemeth <jnemeth@pkgsrc.org> | 2007-08-28 23:56:26 +0000 |
---|---|---|
committer | jnemeth <jnemeth@pkgsrc.org> | 2007-08-28 23:56:26 +0000 |
commit | 025af58b0c45eb9dfbb08eeb9ddf1185501986bc (patch) | |
tree | e7d5eba2dde325233a887a9216c906fd3d826c04 /www/apache2 | |
parent | 7aef5bea1ec7c45ccb81947c9d9cd4210592e56b (diff) | |
download | pkgsrc-025af58b0c45eb9dfbb08eeb9ddf1185501986bc.tar.gz |
PR/36855 - Michael -- don't create duplicate Listen directives
Diffstat (limited to 'www/apache2')
-rw-r--r-- | www/apache2/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/www/apache2/Makefile b/www/apache2/Makefile index f7dd73c58db..0e040a0e1fd 100644 --- a/www/apache2/Makefile +++ b/www/apache2/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.115 2007/07/04 20:55:03 jlam Exp $ +# $NetBSD: Makefile,v 1.116 2007/08/28 23:57:06 jnemeth Exp $ .include "Makefile.common" PKGNAME= apache-${APACHE_VERSION} -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= www HOMEPAGE= http://httpd.apache.org/ @@ -207,12 +207,10 @@ post-install: do \ ${AWK} ' \ /^Listen[ ]*80/ { \ - print; \ printf "%s", "Listen 0.0.0.0:80\n"; \ next; \ } \ /^Listen[ ]*443/ { \ - print; \ printf "%s", "Listen 0.0.0.0:443\n"; \ next; \ } \ |