diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-07-29 17:27:23 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-07-29 17:27:23 +0000 |
commit | 3ea2410d6cf36d77312452c6d8be6d6944a8d763 (patch) | |
tree | 4e473b4e86ef137a1a8d7bc6929ef6601151bccc /dev-lang | |
parent | Stable for HPPA (bug #330387). (diff) | |
download | gentoo-2-3ea2410d6cf36d77312452c6d8be6d6944a8d763.tar.gz gentoo-2-3ea2410d6cf36d77312452c6d8be6d6944a8d763.tar.bz2 gentoo-2-3ea2410d6cf36d77312452c6d8be6d6944a8d763.zip |
fix bug #282768
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/php/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/php/files/eblits/src_install-v1.eblit | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/dev-lang/php/ChangeLog b/dev-lang/php/ChangeLog index 9c084ea9a61f..924485f9d467 100644 --- a/dev-lang/php/ChangeLog +++ b/dev-lang/php/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/php # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.397 2010/07/29 16:27:41 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.398 2010/07/29 17:27:23 mabi Exp $ + + 29 Jul 2010; Matti Bickel <mabi@gentoo.org> + files/eblits/src_install-v1.eblit: + use /tmp for session.save_path (bug #282768) 29 Jul 2010; Matti Bickel <mabi@gentoo.org> files/eblits/src_install-v1.eblit: diff --git a/dev-lang/php/files/eblits/src_install-v1.eblit b/dev-lang/php/files/eblits/src_install-v1.eblit index 73cec15afdc7..f567da137c6b 100644 --- a/dev-lang/php/files/eblits/src_install-v1.eblit +++ b/dev-lang/php/files/eblits/src_install-v1.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/src_install-v1.eblit,v 1.5 2010/07/29 16:27:41 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_install-v1.eblit,v 1.6 2010/07/29 17:27:23 mabi Exp $ eblit-php-src_install() { # see bug #324739 for what happens when we don't have that @@ -84,6 +84,9 @@ php_install_ini() { # default to expose_php=Off, bug 300695 sed -e 's|^expose_php .*|expose_php = Off|g' -i "${phpinisrc}" + # default to /tmp for save_path, bug #282768 + sed -e 's|^;session.save_path .*$|session.save_path = "/tmp"|g' -i "${phpinisrc}" + # Set the extension dir sed -e "s|^extension_dir .*$|extension_dir = ${extension_dir}|g" -i "${phpinisrc}" |