Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 404800 Details for
Bug 551526
dev-lang/php: minor fixes to php-5.6.9.ebuild
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
0006-Use-consistently-for-appending-to-my_conf.patch
0006-Use-consistently-for-appending-to-my_conf.patch (text/plain), 1.57 KB, created by
Michael Orlitzky
on 2015-06-09 01:22:06 UTC
(
hide
)
Description:
0006-Use-consistently-for-appending-to-my_conf.patch
Filename:
MIME Type:
Creator:
Michael Orlitzky
Created:
2015-06-09 01:22:06 UTC
Size:
1.57 KB
patch
obsolete
>From 5c164dc87f3fadece52a238a1550724d896fdf5a Mon Sep 17 00:00:00 2001 >From: Michael Orlitzky <michael@orlitzky.com> >Date: Mon, 8 Jun 2015 20:51:13 -0400 >Subject: [PATCH 6/7] Use "+=" consistently for appending to $my_conf. > >--- > dev-lang/php/php-5.6.9.ebuild | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > >diff --git a/dev-lang/php/php-5.6.9.ebuild b/dev-lang/php/php-5.6.9.ebuild >index 933d124..3d7d87e 100644 >--- a/dev-lang/php/php-5.6.9.ebuild >+++ b/dev-lang/php/php-5.6.9.ebuild >@@ -406,7 +406,7 @@ src_configure() { > # DBA support > if use cdb || use berkdb || use flatfile || use gdbm || use inifile \ > || use qdbm ; then >- my_conf="${my_conf} --enable-dba${shared}" >+ my_conf+=" --enable-dba${shared}" > fi > > # DBA drivers support >@@ -500,12 +500,12 @@ src_configure() { > fi > > # Use pic for shared modules such as apache2's mod_php >- my_conf="${my_conf} --with-pic" >+ my_conf+=" --with-pic" > > # we use the system copy of pcre > # --with-pcre-regex affects ext/pcre > # --with-pcre-dir affects ext/filter and ext/zip >- my_conf="${my_conf} --with-pcre-regex=${EPREFIX}/usr --with-pcre-dir=${EPREFIX}/usr" >+ my_conf+=" --with-pcre-regex=${EPREFIX}/usr --with-pcre-dir=${EPREFIX}/usr" > > # Catch CFLAGS problems > # Fixes bug #14067. >@@ -513,7 +513,7 @@ src_configure() { > replace-cpu-flags "k6*" "i586" > > # Support user-passed configuration parameters >- my_conf="${my_conf} ${EXTRA_ECONF:-}" >+ my_conf+=" ${EXTRA_ECONF:-}" > > # Support the Apache2 extras, they must be set globally for all > # SAPIs to work correctly, especially for external PHP extensions >-- >2.3.6 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 551526
:
404790
|
404792
|
404794
|
404796
|
404798
| 404800 |
404802