summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-10-14 22:23:02 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-10-14 22:23:02 +0000
commit078627023c082f6bd0f377a90689ce9d1ec403f5 (patch)
tree9c38255d15a8be25c2dcf8738d4d8be9d5e9a93a /eclass
parentprepgamesdirs (Manifest recommit) (diff)
downloadgentoo-2-078627023c082f6bd0f377a90689ce9d1ec403f5.tar.gz
gentoo-2-078627023c082f6bd0f377a90689ce9d1ec403f5.tar.bz2
gentoo-2-078627023c082f6bd0f377a90689ce9d1ec403f5.zip
Fix use invocation
Diffstat (limited to 'eclass')
-rw-r--r--eclass/gnustep.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass
index e6b86b4bdbb8..bbbfa630d45f 100644
--- a/eclass/gnustep.eclass
+++ b/eclass/gnustep.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.17 2004/10/04 01:22:19 fafhrd Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.18 2004/10/14 22:23:02 mr_bones_ Exp $
inherit eutils flag-o-matic
@@ -43,7 +43,7 @@ egnustep_env() {
egnustep_make() {
if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
- if [ `use debug` ]; then
+ if use debug ; then
emake -j1 HOME=${TMP} \
GNUSTEP_USER_ROOT=${TMP}/GNUstep \
GNUSTEP_DEFAULTS_ROOT=${TMP}/GNUstep \
@@ -92,7 +92,7 @@ egnustep_package_config_info() {
egnustep_install() {
if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
- if [ `use debug` ]; then
+ if use debug ; then
emake -j1 HOME=${TMP} \
GNUSTEP_USER_ROOT=${TMP}/GNUstep \
GNUSTEP_DEFAULTS_ROOT=${TMP}/GNUstep \