comparison src/build-texinfo-1-fixes.patch @ 3518:596a5f3baf08

fix texinfo egrep bug
author John W. Eaton <jwe@octave.org>
date Fri, 14 Feb 2014 13:23:25 -0500
parents
children
comparison
equal deleted inserted replaced
3517:6a6f257372b7 3518:596a5f3baf08
1 diff -ru a/util/texi2dvi b/util/texi2dvi
2 --- a/util/texi2dvi 2008-09-18 14:46:01.000000000 -0400
3 +++ b/util/texi2dvi 2014-02-14 13:21:50.038015947 -0500
4 @@ -1683,7 +1683,7 @@
5
6 # If the COMMAND_LINE_FILENAME is not absolute (e.g., --debug.tex),
7 # prepend `./' in order to avoid that the tools take it as an option.
8 - echo "$command_line_filename" | $EGREP '^(/|[A-z]:/)' >&6 \
9 + echo "$command_line_filename" | $EGREP '^(/|[A-Za-z]:/)' >&6 \
10 || command_line_filename="./$command_line_filename"
11
12 # See if the file exists. If it doesn't we're in trouble since, even