t-ppccomm (ecrti$(objext)): Use $<.
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Thu, 3 Nov 2011 15:42:27 +0000 (15:42 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 3 Nov 2011 15:42:27 +0000 (11:42 -0400)
* config/rs6000/t-ppccomm (ecrti$(objext)): Use $<.
(ecrtn$(objext)): Likewise.
(ncrti$(objext)): Likewise.
(ncrtn$(objext)): Likewise.

From-SVN: r180830

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 $<