Gentoo Archives: gentoo-dev

From: "D. Wokan" <wokan@×××.net>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] mod_php-5.0.2 possible bug (wanted to bounce off here before reporting)
Date: Thu, 02 Dec 2004 21:53:14
Message-Id: 41AF8ECD.3060701@cox.net
1 From mod_php-5.0.2.ebuild ...
2 local domsg=
3 [ -n "$1" ] && domsg=1
4 HAVE_APACHE1=
5 HAVE_APACHE2=
6 has_version '=net-www/apache-1*' && HAVE_APACHE1=1
7 has_version '=net-www/apache-2*' && HAVE_APACHE2=1
8
9 Shouldn't it be...
10 local domsg=
11 [ -n "$1" ] && domsg=1
12 HAVE_APACHE1=
13 has_version '=net-www/apache-1*' && HAVE_APACHE1=1
14 HAVE_APACHE2=
15 has_version '=net-www/apache-2*' && HAVE_APACHE2=1
16
17 Or am I missing some kind of cascading equation that's supposed to be
18 occuring? (a=b=c)
19
20 --
21 D. Wokan
22 Future Gentoo Developer
23
24 --
25 gentoo-dev@g.o mailing list

Replies