This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFA] top level configure and makeinfo/texinfo


> -       | egrep 'texinfo[^0-9]*(4\.([6-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then
> +       | egrep 'texinfo[^0-9]*(4\.([6-9]|4\.[1-9][0-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then

Um, the first matches:
	4.[6-9]
	4.[1-9][0-9]
	[5-9].*
	[1-9][0-9].*

Yours matches:
	4.[6-9]
	4.4.[1-9][0-9]
	4.[1-9][0-9]
	[5-9].*
	[1-9][0-9].*

I don't think this is what you want.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]