diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-11 13:02:05 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-11 13:02:05 +0000 |
commit | bdcbffef8343e7fa48e92943ba011e0155fbd4cf (patch) | |
tree | f528addfd816e8707d8aa93d571c1908e9bde57c /eclass/gnome2.eclass | |
parent | repoman details (diff) | |
download | historical-bdcbffef8343e7fa48e92943ba011e0155fbd4cf.tar.gz historical-bdcbffef8343e7fa48e92943ba011e0155fbd4cf.tar.bz2 historical-bdcbffef8343e7fa48e92943ba011e0155fbd4cf.zip |
change use syntax to the right form
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 36b5ca04ff3b..00e55a4943bb 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,13 +1,13 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.40 2004/04/09 18:46:57 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.41 2004/05/11 13:02:05 vapier Exp $ # # Authors: # Bruce A. Locke <blocke@shivan.org> # Spidler <spider@gentoo.org> inherit libtool gnome.org -[ `use debug` ] && inherit debug +use debug && inherit debug # Gnome 2 ECLASS ECLASS="gnome2" @@ -18,7 +18,7 @@ ELTCONF="" # extra options passed to elibtoolize SCROLLKEEPER_UPDATE="1" # whether to run scrollkeeper for this package USE_DESTDIR="" # use make DESTDIR=${D} install rather than einstall -[ `use debug` ] && G2CONF="${G2CONF} --enable-debug=yes" +use debug && G2CONF="${G2CONF} --enable-debug=yes" DEPEND="${DEPEND} >=sys-apps/sed-4" |