diff options
author | Ole Markus With <olemarkus@gentoo.org> | 2010-10-09 11:48:26 +0000 |
---|---|---|
committer | Ole Markus With <olemarkus@gentoo.org> | 2010-10-09 11:48:26 +0000 |
commit | ecc7853897aac75b058151d613a122a45bc9dddf (patch) | |
tree | 422087091818e028d0d2f26b82dffb91eb653ea6 /dev-lang | |
parent | Update patch for perl 5.12 warnings as suggested by Paul Colquhoun in bug 333... (diff) | |
download | gentoo-2-ecc7853897aac75b058151d613a122a45bc9dddf.tar.gz gentoo-2-ecc7853897aac75b058151d613a122a45bc9dddf.tar.bz2 gentoo-2-ecc7853897aac75b058151d613a122a45bc9dddf.zip |
Fixed a typo in pkg_postinst-v2.eblit
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/php/files/eblits/pkg_postinst-v2.eblit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-lang/php/files/eblits/pkg_postinst-v2.eblit b/dev-lang/php/files/eblits/pkg_postinst-v2.eblit index 80fb0da05225..72ac894937ef 100644 --- a/dev-lang/php/files/eblits/pkg_postinst-v2.eblit +++ b/dev-lang/php/files/eblits/pkg_postinst-v2.eblit @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/pkg_postinst-v2.eblit,v 1.1 2010/10/08 18:25:10 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/pkg_postinst-v2.eblit,v 1.2 2010/10/09 11:48:26 olemarkus Exp $ eblit-php-pkg_postinst() { # Output some general info to the user @@ -13,7 +13,7 @@ eblit-php-pkg_postinst() { # Create the symlinks for php local m modules="cli apache2" - for m in modules; do + for m in $modules; do if use $m ; then local ci=$(eselect php show $m) if [[ -z $ci ]]; then |