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/php-lib-r1.eclass
parentVersion bump, ebuild cleanup. (diff)
downloadhistorical-e67140117ecdc32dfe1967360391a29d59092b5b.tar.gz
historical-e67140117ecdc32dfe1967360391a29d59092b5b.tar.bz2
historical-e67140117ecdc32dfe1967360391a29d59092b5b.zip
more backticks fixes
Diffstat (limited to 'eclass/php-lib-r1.eclass')
-rw-r--r--eclass/php-lib-r1.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/php-lib-r1.eclass b/eclass/php-lib-r1.eclass
index 058cecf2b082..91150aa625bf 100644
--- a/eclass/php-lib-r1.eclass
+++ b/eclass/php-lib-r1.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/php-lib-r1.eclass,v 1.7 2007/09/04 18:44:02 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php-lib-r1.eclass,v 1.8 2007/11/29 23:12:13 jokey Exp $
#
# Author: Stuart Herbert <stuart@gentoo.org>
# Author: Luca Longinotti <chtekk@gentoo.org>
@@ -54,7 +54,7 @@ php-lib-r1_src_install() {
shift
for x in $@ ; do
- SUBDIR="`dirname ${x}`"
+ SUBDIR="$(dirname ${x})"
insinto "${PHP_LIB_DIR}/${SUBDIR}"
doins "${S_DIR}/${x}"
done