* config/rs6000/t-ppccomm (ecrti$(objext)): Use $<.
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Nov 2011 15:42:27 +0000 (15:42 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Nov 2011 15:42:27 +0000 (15:42 +0000)
(ecrtn$(objext)): Likewise.
(ncrti$(objext)): Likewise.
(ncrtn$(objext)): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180830 138bc75d-0d04-0410-961f-82ee72b054a4

libgcc/ChangeLog
libgcc/config/rs6000/t-ppccomm

index 158cc18..720d485 100644 (file)
@@ -1,3 +1,10 @@
+2011-11-03  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * config/rs6000/t-ppccomm (ecrti$(objext)): Use $<.
+       (ecrtn$(objext)): Likewise.
+       (ncrti$(objext)): Likewise.
+       (ncrtn$(objext)): Likewise.
+
 2011-11-03  Andreas Schwab  <schwab@redhat.com>
 
        * config/ia64/t-ia64 (crtbeginS.o): Fix whitespace damage.
index adef740..e923368 100644 (file)
@@ -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 $<