diff options
author | Daniel Jacobowitz <dan@codesourcery.com> | 2007-01-08 22:50:43 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@gcc.gnu.org> | 2007-01-08 22:50:43 +0000 |
commit | 1c61ff294690d6ce7c9e958f62ab48a441943844 (patch) | |
tree | 76b51a29167e4e9489cbbfb09797c63a59d2cb31 /gcc/config/pa | |
parent | df1133a62c4a6124b8a6773794dcc84ded968f7b (diff) | |
download | gcc-1c61ff294690d6ce7c9e958f62ab48a441943844.zip gcc-1c61ff294690d6ce7c9e958f62ab48a441943844.tar.gz gcc-1c61ff294690d6ce7c9e958f62ab48a441943844.tar.bz2 |
* config/pa/t-pa64 (libgcc_stub.a): Use $(T).
From-SVN: r120595
Diffstat (limited to 'gcc/config/pa')
-rw-r--r-- | gcc/config/pa/t-pa64 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/pa/t-pa64 b/gcc/config/pa/t-pa64 index 66cc4b5..9fd9607 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 |