From: deraadt Date: Mon, 7 Apr 1997 23:57:44 +0000 (+0000) Subject: use $< instead of $? for ar. Obviously required since the .a file gets X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=457c1af4c2035301365501eb391277cfc6d93bdc;p=openbsd use $< instead of $? for ar. Obviously required since the .a file gets deleted in the same target! bug report sent to cygnus via niklas. --- diff --git a/gnu/usr.bin/gcc/objc/Makefile b/gnu/usr.bin/gcc/objc/Makefile index 36981337585..142948ed328 100644 --- a/gnu/usr.bin/gcc/objc/Makefile +++ b/gnu/usr.bin/gcc/objc/Makefile @@ -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 $? + $(AR) rc libobjc.a $< # ranlib is run in the parent directory's makefile. OBJC_H = hash.h list.h sarray.h objc.h \