diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-09-12 21:40:04 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-09-12 21:40:04 +0000 |
commit | 5f9dc32934fd835cedb3d66a757c5919871c6e2c (patch) | |
tree | 9e357429867902725b669a367bc094f13b5abc3c /gcc/objc/Makefile.in | |
parent | 17108b2bded7083ccd36f2e7787becd00fcf48fd (diff) | |
download | gcc-5f9dc32934fd835cedb3d66a757c5919871c6e2c.tar.gz |
Changed archive command for libobjc.a to use $? for objects.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@10332 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc/Makefile.in')
-rw-r--r-- | gcc/objc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/objc/Makefile.in b/gcc/objc/Makefile.in index 7a6a1e94138..36981337585 100644 --- a/gcc/objc/Makefile.in +++ b/gcc/objc/Makefile.in @@ -60,7 +60,7 @@ OBJC_O = hash.o sarray.o class.o sendmsg.o init.o archive.o encoding.o \ libobjc.a: $(OBJC_O) -rm -f libobjc.a - $(AR) rc libobjc.a $(OBJC_O) + $(AR) rc libobjc.a $? # ranlib is run in the parent directory's makefile. OBJC_H = hash.h list.h sarray.h objc.h \ |