diff options
author | Chris Demetriou <cgd@google.com> | 2003-05-03 01:31:50 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@google.com> | 2003-05-03 01:31:50 +0000 |
commit | 77f7441a3203c6b596717998024c0f60c1268994 (patch) | |
tree | a7a3b75ee53faf007c64acad44cb10697de9ebb5 /Makefile.tpl | |
parent | 2739f79a3b180bb7ebad504ad8e5a77123f346c8 (diff) | |
download | gdb-77f7441a3203c6b596717998024c0f60c1268994.zip gdb-77f7441a3203c6b596717998024c0f60c1268994.tar.gz gdb-77f7441a3203c6b596717998024c0f60c1268994.tar.bz2 |
2003-05-02 Chris Demetriou <cgd@broadcom.com>
* Makefile.tpl: Require "makeinfo" from texinfo 4.2 or later.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 018f18f..b634b35 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -194,13 +194,13 @@ M4 = `if [ -f $$r/m4/m4 ] ; \ then echo $$r/m4/m4 ; \ else echo ${DEFAULT_M4} ; fi` -# For an installed makeinfo, we require it to be from texinfo 4 or +# For an installed makeinfo, we require it to be from texinfo 4.2 or # higher, else we use the "missing" dummy. MAKEINFO=@MAKEINFO@ USUAL_MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \ then echo $$r/texinfo/makeinfo/makeinfo ; \ else if (makeinfo --version \ - | egrep 'texinfo[^0-9]*([1-3][0-9]|[4-9])') >/dev/null 2>&1; \ + | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[2-9]|[5-9])') >/dev/null 2>&1; \ then echo makeinfo; else echo $$s/missing makeinfo; fi; fi` # This just becomes part of the MAKEINFO definition passed down to |