Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gnustep-base.eclass
Date: Mon, 06 Jul 2009 19:55:57
Message-Id: E1MNuI7-0006gA-S5@stork.gentoo.org
1 grobian 09/07/06 19:55:55
2
3 Modified: gnustep-base.eclass
4 Log:
5 fix test to actually work as expected
6
7 Revision Changes Path
8 1.11 eclass/gnustep-base.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gnustep-base.eclass?rev=1.11&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gnustep-base.eclass?rev=1.11&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gnustep-base.eclass?r1=1.10&r2=1.11
13
14 Index: gnustep-base.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v
17 retrieving revision 1.10
18 retrieving revision 1.11
19 diff -u -r1.10 -r1.11
20 --- gnustep-base.eclass 11 May 2009 10:58:42 -0000 1.10
21 +++ gnustep-base.eclass 6 Jul 2009 19:55:55 -0000 1.11
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.10 2009/05/11 10:58:42 voyageur Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-base.eclass,v 1.11 2009/07/06 19:55:55 grobian Exp $
27
28 inherit eutils flag-o-matic
29
30 @@ -138,7 +138,7 @@
31
32 # Make utilizing GNUstep Makefiles
33 egnustep_make() {
34 - if [[ -f ./[mM]akefile || -f ./GNUmakefile ]] ; then
35 + if [[ -f ./Makefile || -f ./makefile || -f ./GNUmakefile ]] ; then
36 emake ${*} "${GS_ENV[@]}" all || die "package make failed"
37 return 0
38 fi