This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch/fbsd] Keep NATDEPFILES on a single line


FYI,

When cross compiling configure.in prefixes the NATDEPFILES line with a
'#'.  Unfortunatly it only prefixes one line.

	Andrew
Wed Jul  5 21:06:39 2000  Andrew Cagney  <cagney@b1.cygnus.com>

	* config/i386/fbsd.mh (NATDEPFILES): Keep NATDEPFILES to a single
 	line.  configure.in assumes this.

Index: config/i386/fbsd.mh
===================================================================
RCS file: /cvs/src/src/gdb/config/i386/fbsd.mh,v
retrieving revision 1.3
diff -p -r1.3 fbsd.mh
*** fbsd.mh	2000/06/12 06:09:05	1.3
--- fbsd.mh	2000/07/05 11:07:38
***************
*** 1,6 ****
  # Host: Intel 386 running FreeBSD
  XDEPFILES=
! NATDEPFILES= fork-child.o infptrace.o inftarg.o solib.o \
! 	corelow.o core-aout.o core-regset.o i387-nat.o i386bsd-nat.o
  XM_FILE= xm-fbsd.h
  NAT_FILE= nm-fbsd.h
--- 1,6 ----
  # Host: Intel 386 running FreeBSD
  XDEPFILES=
! # NOTE: Do not spread NATDEPFILES over several lines - it hurts BSD make.
! NATDEPFILES= fork-child.o infptrace.o inftarg.o solib.o corelow.o core-aout.o core-regset.o i387-nat.o i386bsd-nat.o
  XM_FILE= xm-fbsd.h
  NAT_FILE= nm-fbsd.h

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]