summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Markus With <olemarkus@gentoo.org>2011-12-23 17:16:42 +0000
committerOle Markus With <olemarkus@gentoo.org>2011-12-23 17:16:42 +0000
commit14e8d3d1bf3e7a9897c5f66bf5967967f4b5d265 (patch)
treed35c423846d23bce2d74e0ebcdec35b5a8513766 /dev-lang
parentStable for AMD64, wrt bug #395775 (diff)
downloadhistorical-14e8d3d1bf3e7a9897c5f66bf5967967f4b5d265.tar.gz
historical-14e8d3d1bf3e7a9897c5f66bf5967967f4b5d265.tar.bz2
historical-14e8d3d1bf3e7a9897c5f66bf5967967f4b5d265.zip
Fixed a typo leading to bug 395725
Package-Manager: portage-2.2.0_alpha71/cvs/Linux x86_64
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/php/ChangeLog6
-rw-r--r--dev-lang/php/files/eblits/src_configure-v53.eblit13
2 files changed, 11 insertions, 8 deletions
diff --git a/dev-lang/php/ChangeLog b/dev-lang/php/ChangeLog
index 5c19f0724f52..8ce972bbcc3a 100644
--- a/dev-lang/php/ChangeLog
+++ b/dev-lang/php/ChangeLog
@@ -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,
diff --git a/dev-lang/php/files/eblits/src_configure-v53.eblit b/dev-lang/php/files/eblits/src_configure-v53.eblit
index 537b3ddcaa41..00b7275318d9 100644
--- a/dev-lang/php/files/eblits/src_configure-v53.eblit
+++ b/dev-lang/php/files/eblits/src_configure-v53.eblit
@@ -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 )