From 457c1af4c2035301365501eb391277cfc6d93bdc Mon Sep 17 00:00:00 2001 From: deraadt Date: Mon, 7 Apr 1997 23:57:44 +0000 Subject: [PATCH] use $< instead of $? for ar. Obviously required since the .a file gets deleted in the same target! bug report sent to cygnus via niklas. --- gnu/usr.bin/gcc/objc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ -- 2.20.1