summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-01-30 21:58:02 +0000
committerMamoru Komachi <usata@gentoo.org>2004-01-30 21:58:02 +0000
commitf1473f42da39767c19dfef87e868988904e66a9e (patch)
tree19b39d82acf15ca8d35b0435f545d11abcb3fdbb /eclass
parentCompleting remova of sip-3.9 due to no src being upstream (and no deps (diff)
downloadgentoo-2-f1473f42da39767c19dfef87e868988904e66a9e.tar.gz
gentoo-2-f1473f42da39767c19dfef87e868988904e66a9e.tar.bz2
gentoo-2-f1473f42da39767c19dfef87e868988904e66a9e.zip
Fixed mal-conditional statement of RUBY variable
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ruby.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass
index bac4afd9567a..02114d2dab31 100644
--- a/eclass/ruby.eclass
+++ b/eclass/ruby.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/ruby.eclass,v 1.23 2004/01/25 16:07:28 usata Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.24 2004/01/30 21:58:02 usata Exp $
#
# Author: Mamoru KOMACHI <usata@gentoo.org>
#
@@ -49,7 +49,7 @@ LICENSE="Ruby"
newdepend ">=dev-lang/ruby-1.6.8"
-[[ -n "${RUBY}" ]] && export RUBY=/usr/bin/ruby
+[[ -z "${RUBY}" ]] && export RUBY=/usr/bin/ruby
ruby_src_unpack() {