This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Add missing newline escape to t-960bare


Hi Guys,

  I am applying the following patch as obvious.  It adds a missing
  newline escape to the t-960bare makefile fragment, so that make does
  not interpret the second line of header dependencies as a badly
  formatted instruction line.

Cheers
        Nick


2003-01-17  Nick Clifton  <nickc@redhat.com>

	* config/i960/t-960bare (i960-c.o): Add missing newline escape.

Index: config/i960/t-960bare
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i960/t-960bare,v
retrieving revision 1.9
diff -c -3 -p -w -r1.9 t-960bare
*** config/i960/t-960bare	16 Dec 2002 18:21:23 -0000	1.9
--- config/i960/t-960bare	17 Jan 2003 09:33:08 -0000
*************** xp-bit.c: $(srcdir)/config/fp-bit.c
*** 18,25 ****
  	echo '#define EXTENDED_FLOAT_STUBS' > xp-bit.c
  	cat $(srcdir)/config/fp-bit.c >> xp-bit.c
  
! i960-c.o: $(srcdir)/config/i960/i960-c.c $(CONFIG_H) $(SYSTEM_H) coretypes.h
!   $(TM_H) $(CPPLIB_H) $(TREE_H) c-pragma.h toplev.h $(GGC_H) $(TM_P_H)
  	$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/i960/i960-c.c
  
  MULTILIB_OPTIONS=mnumerics/msoft-float mlong-double-64
--- 18,25 ----
  	echo '#define EXTENDED_FLOAT_STUBS' > xp-bit.c
  	cat $(srcdir)/config/fp-bit.c >> xp-bit.c
  
! i960-c.o: $(srcdir)/config/i960/i960-c.c $(CONFIG_H) $(SYSTEM_H) \
!   coretypes.h $(TM_H) $(CPPLIB_H) $(TREE_H) c-pragma.h toplev.h $(GGC_H) $(TM_P_H)
  	$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/i960/i960-c.c
  
  MULTILIB_OPTIONS=mnumerics/msoft-float mlong-double-64


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