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]

PATCH: Fix typo in Makefile.in



We mispelled s-under (as s-unders) in STAGESTUFF.  This typo goes back
forever, according to CVS.  This started causing build failures for me
today; I don't know what changed to cause that.  The basic problem was
that we were moving underscore.c into the stageN directory, but not
moving s-under.  Therefore, we didn't create underscore.c the next
time around, but we still tried to rebuild underscore.o.

Committed under the obvious fix rule.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

2000-05-18  Mark Mitchell  <mark@codesourcery.com>

	* Makefile.in (STAGESTUFF): Fix typo in spelling of s-under.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/Makefile.in,v
retrieving revision 1.446
diff -c -p -r1.446 Makefile.in
*** Makefile.in	2000/05/12 16:26:12	1.446
--- Makefile.in	2000/05/19 04:09:31
*************** GEN= genemit genoutput genrecog genextra
*** 706,712 ****
  STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
   insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
   insn-attr.h insn-attrtab.c insn-opinit.c tree-check.h \
!  s-flags s-config s-codes s-mlib s-unders s-genrtl \
   s-output s-recog s-emit s-extract s-peep s-check \
   s-attr s-attrtab s-opinit s-crt0 \
   genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
--- 706,712 ----
  STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
   insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
   insn-attr.h insn-attrtab.c insn-opinit.c tree-check.h \
!  s-flags s-config s-codes s-mlib s-under s-genrtl \
   s-output s-recog s-emit s-extract s-peep s-check \
   s-attr s-attrtab s-opinit s-crt0 \
   genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \

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