Re: Cygport bug: autoconf 2.6x check fails 2.61.

2007-12-07 Thread Dean Scarff
Yaakov wrote: > Dean Scarff wrote: >> In short, the grep + cut doesn't quite work like it used to because >> there is a trailing period. The case glob (which is not a POSIX >> regex under the Bourne shell, right?) matches "x2.61." as well as >> "x2.60", which is what we want. > AFAIK that traili

Re: Cygport bug: autoconf 2.6x check fails 2.61.

2007-12-07 Thread Christopher Faylor
On Fri, Dec 07, 2007 at 05:19:26PM -, Dave Korn wrote: >On 07 December 2007 17:09, Dean Scarff wrote: > >- x2.6[0-9]) >+ x2.6[0-9]*) > > > I don't see why both of those regexes wouldn't successfully match '2.61' >already. Your patch looks like it's trying to make the

Re: Cygport bug: autoconf 2.6x check fails 2.61.

2007-12-07 Thread Yaakov (Cygwin Ports)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Dean Scarff wrote: > In short, the grep + cut doesn't quite work like it used to because > there is a trailing period. The case glob (which is not a POSIX regex > under the Bourne shell, right?) matches "x2.61." as well as "x2.60", > which is what w

Re: Cygport bug: autoconf 2.6x check fails 2.61.

2007-12-07 Thread Dean Scarff
> I don't see why both of those regexes wouldn't successfully match > '2.61' already. Your patch looks like it's trying to make the regex > accept "2.6" with no second digit after the decimal place as well. > Can you perhaps clarify? Oh dear. Apparently MIME inline attachments + gmane + ezmlm

RE: Cygport bug: autoconf 2.6x check fails 2.61.

2007-12-07 Thread Dave Korn
On 07 December 2007 17:09, Dean Scarff wrote: - x2.6[0-9]) + x2.6[0-9]*) I don't see why both of those regexes wouldn't successfully match '2.61' already. Your patch looks like it's trying to make the regex accept "2.6" with no second digit after the decimal place

Cygport bug: autoconf 2.6x check fails 2.61.

2007-12-07 Thread Dean Scarff
--- cygport-0.2.10 2007-12-08 01:05:11.892666000 +0900 +++ cygport 2007-12-08 01:05:53.720791000 +0900 @@ -802,7 +802,7 @@ fi case "x$(grep -m 1 'GNU Autoconf' ${confdir}/configure | cut -d ' ' -f 6)" in - x2.6[0-9]) + x2.6[0-9]*) confargs+=" --datarootdir=/usr/share --docdir=/usr/share