Fixed a typo leading to bug 395725
authorOle Markus With <olemarkus@gentoo.org>
Fri, 23 Dec 2011 17:16:42 +0000 (17:16 +0000)
committerOle Markus With <olemarkus@gentoo.org>
Fri, 23 Dec 2011 17:16:42 +0000 (17:16 +0000)
Package-Manager: portage-2.2.0_alpha71/cvs/Linux x86_64

dev-lang/php/ChangeLog
dev-lang/php/files/eblits/src_configure-v53.eblit

index 5c19f0724f529226f323cc658ab629e8d2fbda4e..8ce972bbcc3a5065339377b8c05cd8933145bebf 100644 (file)
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/php
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.532 2011/12/18 09:00:26 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.533 2011/12/23 17:16:42 olemarkus Exp $
+
+  23 Dec 2011; Ole Markus With <olemarkus@gentoo.org>
+  files/eblits/src_configure-v53.eblit:
+  Fixed a typo leading to bug 395725
 
   18 Dec 2011; Ole Markus With <olemarkus@gentoo.org>
   +files/eblits/src_configure-v54.eblit, -files/eblits/src_configure-v3.eblit,
index 537b3ddcaa41e33be20a53fb2bcf8a460295a310..00b7275318d9516830490480233792dd066873a2 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit,v 1.1 2011/12/16 09:02:43 olemarkus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit,v 1.2 2011/12/23 17:16:42 olemarkus Exp $
 
 eblit-php-src_configure() {
     addpredict /usr/share/snmp/mibs/.index
@@ -10,11 +10,10 @@ eblit-php-src_configure() {
        # This is a global variable and should be in caps. It isn't because the
        # phpconfutils eclass relies on exactly this name...
        # for --with-libdir see bug #327025
-       my_conf="
-               --prefix="${PHP_DESTDIR}"
-               --mandir="${PHP_DESTDIR}"/man
-               --infodir="${PHP_DESTDIR}"/info
-               --libdir="${PHP_DESTDIR}"/lib
+       my_conf="--prefix=${PHP_DESTDIR}
+               --mandir=${PHP_DESTDIR}/man
+               --infodir=${PHP_DESTDIR}/info
+               --libdir=${PHP_DESTDIR}/lib
                --with-libdir=$(get_libdir)
                --without-pear
                $(use_enable threads maintainer-zts)"
@@ -63,7 +62,7 @@ eblit-php-src_configure() {
        $(use_enable sockets sockets )
        $(use_with sqlite sqlite /usr)"
     use sqlite && my_conf+=" $(use_enable unicode sqlite-utf8)"
-    $my_conf="
+    my_conf+="
        $(use_with sqlite3 sqlite3 /usr)
        $(use_with sybase-ct sybase-ct /usr)
        $(use_enable sysvipc sysvmsg )