summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorStuart Herbert <stuart@gentoo.org>2004-08-24 20:55:43 +0000
committerStuart Herbert <stuart@gentoo.org>2004-08-24 20:55:43 +0000
commit6f630c82b63636c26dff2d3796950e491c90d23f (patch)
treeea8457e07b5f940d0dcdc790d8e699454cdde409 /eclass
parentver bump #61507 (Manifest recommit) (diff)
downloadgentoo-2-6f630c82b63636c26dff2d3796950e491c90d23f.tar.gz
gentoo-2-6f630c82b63636c26dff2d3796950e491c90d23f.tar.bz2
gentoo-2-6f630c82b63636c26dff2d3796950e491c90d23f.zip
Added fix for when shared USE flag not defined
Diffstat (limited to 'eclass')
-rw-r--r--eclass/confutils.eclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/confutils.eclass b/eclass/confutils.eclass
index de3e64fec5ee..37eeef11b56e 100644
--- a/eclass/confutils.eclass
+++ b/eclass/confutils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/confutils.eclass,v 1.11 2004/08/21 09:46:18 stuart Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/confutils.eclass,v 1.12 2004/08/24 20:55:43 stuart Exp $
#
# eclass/confutils.eclass
# Utility functions to help with configuring a package
@@ -195,6 +195,8 @@ enable_extension_enable () {
if [ "$4+" != "+" ]; then
my_shared="${my_shared},$4"
fi
+ elif [ "$4+" != "+" ]; then
+ my_shared="=$4"
fi
else
if [ "$4+" != "+" ]; then
@@ -245,6 +247,8 @@ enable_extension_with () {
if [ "$4+" != "+" ]; then
my_shared="${my_shared},$4"
fi
+ elif [ "$4+" != "+" ]; then
+ my_shared="=$4"
fi
else
if [ "$4+" != "+" ]; then