diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-11-29 23:12:13 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-11-29 23:12:13 +0000 |
commit | 0815638223c7f2ad1c3e5c1bd1038315ca60ba72 (patch) | |
tree | 93afc186b2a01a9dd4034ac0a60e70d254cec663 /eclass/php-lib-r1.eclass | |
parent | Version bump, ebuild cleanup. (diff) | |
download | gentoo-2-0815638223c7f2ad1c3e5c1bd1038315ca60ba72.tar.gz gentoo-2-0815638223c7f2ad1c3e5c1bd1038315ca60ba72.tar.bz2 gentoo-2-0815638223c7f2ad1c3e5c1bd1038315ca60ba72.zip |
more backticks fixes
Diffstat (limited to 'eclass/php-lib-r1.eclass')
-rw-r--r-- | eclass/php-lib-r1.eclass | 4 |
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 |