diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7df54862de..313ec32185 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2001-03-19 Kevin Buettner + + * config/i386/i386v42mp.mh (NATDEPFILES): List all files on + same line to avoid problems with Unixware 7's make when building + a cross debugger. + 2001-03-19 Andrew Cagney * defs.h (malloc): Move declaration from here. diff --git a/gdb/config/i386/i386v42mp.mh b/gdb/config/i386/i386v42mp.mh index 27123c0a8e..f5da7300cc 100644 --- a/gdb/config/i386/i386v42mp.mh +++ b/gdb/config/i386/i386v42mp.mh @@ -8,7 +8,12 @@ XM_CLIBS= -lsocket -lnsl # we don't want nm-i386v4.h since that defines LOSING_POLL which isn't # appropriate for i386v42mp NAT_FILE= nm-i386v42mp.h -NATDEPFILES= corelow.o core-regset.o fork-child.o i386v4-nat.o \ - solib.o solib-svr4.o solib-legacy.o \ - procfs.o proc-api.o proc-events.o proc-flags.o proc-why.o uw-thread.o + +# NATDEPFILES must remain entirely on one line. When building a cross +# debugger, configure will cause this line to be commented out in the +# Makefile. Many non-GNU versions of make don't permit the use of a +# continuation character (backslash) to extend a commented line. As a +# consequence, make considers subsequent tab-indented lines to be +# some sort of error. +NATDEPFILES= corelow.o core-regset.o fork-child.o i386v4-nat.o solib.o solib-svr4.o solib-legacy.o procfs.o proc-api.o proc-events.o proc-flags.o proc-why.o uw-thread.o