Re: [gentoo-dev] [PATCH] gnome2.eclass does not respect ECONF_SOURCE

2013-05-23 Thread Mike Frysinger
On Thursday 09 May 2013 12:59:11 Pacho Ramos wrote: El mié, 08-05-2013 a las 20:59 -0400, Mike Frysinger escribió: On Wednesday 05 December 2012 18:02:51 Doug Goldstein wrote: - if grep -q disable-scrollkeeper configure; then + if grep -q disable-scrollkeeper ${ECONF_SOURCE:-.}/configure;

Re: [gentoo-dev] [PATCH] gnome2.eclass does not respect ECONF_SOURCE

2013-05-23 Thread Doug Goldstein
On Thu, May 23, 2013 at 2:31 PM, Mike Frysinger vap...@gentoo.org wrote: On Thursday 09 May 2013 12:59:11 Pacho Ramos wrote: El mié, 08-05-2013 a las 20:59 -0400, Mike Frysinger escribió: On Wednesday 05 December 2012 18:02:51 Doug Goldstein wrote: - if grep -q disable-scrollkeeper

Re: [gentoo-dev] [PATCH] gnome2.eclass does not respect ECONF_SOURCE

2013-05-09 Thread Pacho Ramos
El mié, 08-05-2013 a las 20:59 -0400, Mike Frysinger escribió: On Wednesday 05 December 2012 18:02:51 Doug Goldstein wrote: - if grep -q disable-scrollkeeper configure; then + if grep -q disable-scrollkeeper ${ECONF_SOURCE:-.}/configure; then ECONF_SOURCE should be quoted -mike If it

Re: [gentoo-dev] [PATCH] gnome2.eclass does not respect ECONF_SOURCE

2013-05-08 Thread Mike Frysinger
On Wednesday 05 December 2012 18:02:51 Doug Goldstein wrote: - if grep -q disable-scrollkeeper configure; then + if grep -q disable-scrollkeeper ${ECONF_SOURCE:-.}/configure; then ECONF_SOURCE should be quoted -mike signature.asc Description: This is a digitally signed message part.

[gentoo-dev] [PATCH] gnome2.eclass does not respect ECONF_SOURCE

2012-12-05 Thread Doug Goldstein
The gnome2.eclass checks the configure script for certain items and adjusts the arguments to econf based on those checks. Unfortunately when checking the configure script it did not respect ECONF_SOURCE. --- gnome2.eclass | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff

Re: [gentoo-dev] [PATCH] gnome2.eclass does not respect ECONF_SOURCE

2012-12-05 Thread Gilles Dartiguelongue
Le mercredi 05 décembre 2012 à 17:02 -0600, Doug Goldstein a écrit : class checks the configure script for certain items and adjusts the arguments to econf based on those checks. Unfortunately when checking the configure script it did not respect ECONF_SOURCE. Looks good. Might need to apply