diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 158cc18dd58..720d485bdb6 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,10 @@ +2011-11-03 Rainer Orth + + * config/rs6000/t-ppccomm (ecrti$(objext)): Use $<. + (ecrtn$(objext)): Likewise. + (ncrti$(objext)): Likewise. + (ncrtn$(objext)): Likewise. + 2011-11-03 Andreas Schwab * config/ia64/t-ia64 (crtbeginS.o): Fix whitespace damage. diff --git a/libgcc/config/rs6000/t-ppccomm b/libgcc/config/rs6000/t-ppccomm index adef7407698..e9233688268 100644 --- a/libgcc/config/rs6000/t-ppccomm +++ b/libgcc/config/rs6000/t-ppccomm @@ -29,13 +29,13 @@ LIB2ADD_ST += \ # Assemble startup files. ecrti$(objext): $(srcdir)/config/rs6000/eabi-ci.S - $(crt_compile) -c ecrti.S + $(crt_compile) -c $< ecrtn$(objext): $(srcdir)/config/rs6000/eabi-cn.S - $(crt_compile) -c ecrtn.S + $(crt_compile) -c $< ncrti$(objext): $(srcdir)/config/rs6000/sol-ci.S - $(crt_compile) -c ncrti.S + $(crt_compile) -c $< ncrtn$(objext): $(srcdir)/config/rs6000/sol-cn.S - $(crt_compile) -c ncrtn.S + $(crt_compile) -c $<