From: Alexandre Oliva Date: Sat, 23 Feb 2002 10:08:09 +0000 (+0000) Subject: * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=081ff160e9e57176f56902077b0d0e40a435ae55;p=binutils-gdb.git * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just because its Makefile is there; test for the executable instead. --- diff --git a/ChangeLog b/ChangeLog index b9df8cb1a49..94a58280e2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-02-23 Alexandre Oliva + + * Makefile.in (MAKEINFO): Don't assume makeinfo will be built just + because its Makefile is there; test for the executable instead. + 2002-02-09 Alexandre Oliva Contribute sh64-elf. diff --git a/Makefile.in b/Makefile.in index 1a1494c368b..7bf5b5a3bfe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -143,7 +143,7 @@ M4 = `if [ -f $$r/m4/m4 ] ; \ # For an installed makeinfo, we require it to be from texinfo 4 or # higher, else we use the "missing" dummy. -MAKEINFO = `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \ +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; \