diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/t-pa64 | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9157e1418e1..44039cced1f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-01-08 Daniel Jacobowitz <dan@codesourcery.com> + + * config/pa/t-pa64 (libgcc_stub.a): Use $(T). + 2007-01-09 Ben Elliston <bje@au.ibm.com> * genautomata.c (STATS_OPTION): New option. diff --git a/gcc/config/pa/t-pa64 b/gcc/config/pa/t-pa64 index 66cc4b5b04b..9fd9607eb99 100644 --- a/gcc/config/pa/t-pa64 +++ b/gcc/config/pa/t-pa64 @@ -22,7 +22,7 @@ jvrc-stub.o: stublib.c $(GCC_PASSES) $(GCC_FOR_TARGET) -c -O2 -DL_Jv_RegisterClasses stublib.c \ -o jvrc-stub.o -libgcc_stub.a: $(LIBGCCSTUB_OBJS) - -rm -rf libgcc_stub.a - $(AR) rc libgcc_stub.a $(LIBGCCSTUB_OBJS) - $(RANLIB) libgcc_stub.a +$(T)libgcc_stub.a: $(LIBGCCSTUB_OBJS) + -rm -rf $(T)libgcc_stub.a + $(AR) rc $(T)libgcc_stub.a $(LIBGCCSTUB_OBJS) + $(RANLIB) $(T)libgcc_stub.a |