pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk PKGBASE must not include a backslash.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/390b8418f831
branches:  trunk
changeset: 528630:390b8418f831
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Fri May 11 08:35:52 2007 +0000

description:
PKGBASE must not include a backslash.

diffstat:

 mk/apache.mk |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r e465be6e848a -r 390b8418f831 mk/apache.mk
--- a/mk/apache.mk      Fri May 11 08:32:11 2007 +0000
+++ b/mk/apache.mk      Fri May 11 08:35:52 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: apache.mk,v 1.21 2007/05/09 19:56:18 joerg Exp $
+# $NetBSD: apache.mk,v 1.22 2007/05/11 08:35:52 rillig Exp $
 #
 # This file is meant to be included by packages that require an apache
 # web server.
@@ -58,7 +58,7 @@
 # The available apache packages:
 _PKG_APACHES=                  apache13 apache2 apache22
 
-_APACHE_PKGBASE.apache13=      apache-1\*
+_APACHE_PKGBASE.apache13=      apache-1*
 _APACHE_PKG_PREFIX.apache13=   ap13
 _APACHE_PKGSRCDIR.apache13=    ../../www/apache
 
@@ -66,7 +66,7 @@
 _APACHE_PKG_PREFIX.apache2=    ap2
 _APACHE_PKGSRCDIR.apache2=     ../../www/apache2
 
-_APACHE_PKGBASE.apache22=      apache-2.[23456789]\*
+_APACHE_PKGBASE.apache22=      apache-2.[23456789]*
 _APACHE_PKG_PREFIX.apache22=   ap22
 _APACHE_PKGSRCDIR.apache22=    ../../www/apache22
 
@@ -90,7 +90,7 @@
 .for _ap_ in ${PKG_APACHE_ACCEPTED}
 _APACHE_OK.${_ap_}=    yes
 _APACHE_INSTALLED.${_ap_}!= \
-       if ${PKG_INFO} -qe ${_APACHE_PKGBASE.${_ap_}}; then             \
+       if ${PKG_INFO} -qe ${_APACHE_PKGBASE.${_ap_}:Q}; then           \
                ${ECHO} yes;                                            \
        else                                                            \
                ${ECHO} no;                                             \



Home | Main Index | Thread Index | Old Index