From: Martin Pool Date: Mon, 25 Mar 2002 04:36:56 +0000 (+0000) Subject: Apparently SGI make doesn't like $< in non-implicit rules. X-Git-Tag: v2.5.5.rc1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=435f1ed70d102873ef51a69e2b530fda20dd41c4;p=thirdparty%2Frsync.git Apparently SGI make doesn't like $< in non-implicit rules. --- diff --git a/Makefile.in b/Makefile.in index 2c563958..a32a641c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -73,7 +73,7 @@ tls: $(TLS_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) getgroups: getgroups.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ getgroups.o $(LIBS) TRIMSLASH_OBJ = trimslash.o syscall.o trimslash: $(TRIMSLASH_OBJ)