diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-03-19 05:15:32 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-03-19 05:15:32 +0000 |
commit | 8aa16b78d80fc1ad1e252d8b712c828444a60be4 (patch) | |
tree | 92fa26aa00df24e61fe482ef18cc5456f8fb37ad /gdb/config | |
parent | 559e75c07a4bd1d17dd4d7aa05774773ac0c03cc (diff) | |
download | gdb-8aa16b78d80fc1ad1e252d8b712c828444a60be4.zip gdb-8aa16b78d80fc1ad1e252d8b712c828444a60be4.tar.gz gdb-8aa16b78d80fc1ad1e252d8b712c828444a60be4.tar.bz2 |
Fix NetBSD 1.4 build problem.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/nbsd.mh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gdb/config/i386/nbsd.mh b/gdb/config/i386/nbsd.mh index f059608..a9c07f4 100644 --- a/gdb/config/i386/nbsd.mh +++ b/gdb/config/i386/nbsd.mh @@ -1,6 +1,13 @@ # Host: Intel 386 running NetBSD XDEPFILES= -NATDEPFILES= fork-child.o infptrace.o inftarg.o corelow.o i386nbsd-nat.o \ - solib.o solib-svr4.o solib-legacy.o + +# NATDEPFILES must remain entirely on one line for *BSD. When +# building a cross debugger, configure will cause this line to be +# commented out in the Makefile. BSD make doesn't permit the use of a +# continuation character (backslash) to extend a commented line. As a +# consequence, BSD make considers subsequent tab-indented lines to be +# "unassociated shell commands". +NATDEPFILES= fork-child.o infptrace.o inftarg.o corelow.o i386nbsd-nat.o solib.o solib-svr4.o solib-legacy.o + XM_FILE= xm-nbsd.h NAT_FILE= nm-nbsd.h |