This is the mail archive of the egcs@egcs.cygnus.com mailing list for the EGCS project. See the EGCS home page for more information.
A friend recently reported a problem in 1.1.1. I believe it's still there
in 1.1.2. The problem is that texinfo's Makefiles require GNU make. I
believe this was fixed by Alexandre in the trunk. Would it be appropriate
to propogate this fix backward into 1.1.2?
$ find . -name Makefile.in -print | xargs grep :=
./egcs/texinfo/info/Makefile.in:DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
./egcs/texinfo/makeinfo/Makefile.in:DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
./egcs/texinfo/util/Makefile.in:DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
./egcs/texinfo/lib/Makefile.in:DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
I believe the appropriate patch to bring in is this one:
Thu Oct 15 20:40:34 1998 Alexandre Oliva <oliva@dcc.unicamp.br>
* Makefile.in: rebuilt with --include-deps, --build-dir and
--srcdir-name
* doc/Makefile.in: ditto
* info/Makefile.in: ditto
* lib/Makefile.in: ditto
* makeinfo/Makefile.in: ditto
* util/Makefile.in: ditto
RJL