summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Ullmann <jokey@gentoo.org>2007-11-29 23:12:13 +0000
committerMarkus Ullmann <jokey@gentoo.org>2007-11-29 23:12:13 +0000
commite67140117ecdc32dfe1967360391a29d59092b5b (patch)
treecbd879bae2d10a9d12191684a17aa6ba59544b7d /eclass/phpconfutils.eclass
parentVersion bump, ebuild cleanup. (diff)
downloadhistorical-e67140117ecdc32dfe1967360391a29d59092b5b.tar.gz
historical-e67140117ecdc32dfe1967360391a29d59092b5b.tar.bz2
historical-e67140117ecdc32dfe1967360391a29d59092b5b.zip
more backticks fixes
Diffstat (limited to 'eclass/phpconfutils.eclass')
-rw-r--r--eclass/phpconfutils.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/phpconfutils.eclass b/eclass/phpconfutils.eclass
index c44b9c8bfec5..17e693a1c059 100644
--- a/eclass/phpconfutils.eclass
+++ b/eclass/phpconfutils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/phpconfutils.eclass,v 1.7 2007/11/22 21:52:12 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/phpconfutils.eclass,v 1.8 2007/11/29 23:12:13 jokey Exp $
#
# ########################################################################
#
@@ -34,7 +34,7 @@
phpconfutils_sort_flags() {
# Sort the list of auto-magically enabled USE flags
- PHPCONFUTILS_AUTO_USE="`echo ${PHPCONFUTILS_AUTO_USE} | tr '\040\010' '\012\012' | sort -u`"
+ PHPCONFUTILS_AUTO_USE="$(echo ${PHPCONFUTILS_AUTO_USE} | tr '\040\010' '\012\012' | sort -u)"
}
# ========================================================================