diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-03-20 02:37:55 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-03-20 02:37:55 +0000 |
commit | 087bb2e2400e97d4aec5bec747e9fcf7d5af6826 (patch) | |
tree | 99c914e6288bc25a4aecb1263459f3662434c9d8 /gdb/config/i386 | |
parent | f4bc6bb0c292785eba639c46abd2edc134ebfb17 (diff) | |
download | gdb-087bb2e2400e97d4aec5bec747e9fcf7d5af6826.zip gdb-087bb2e2400e97d4aec5bec747e9fcf7d5af6826.tar.gz gdb-087bb2e2400e97d4aec5bec747e9fcf7d5af6826.tar.bz2 |
Fix ``make'' problems when building cross debugger.
Diffstat (limited to 'gdb/config/i386')
-rw-r--r-- | gdb/config/i386/i386v42mp.mh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gdb/config/i386/i386v42mp.mh b/gdb/config/i386/i386v42mp.mh index 27123c0..f5da730 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 |