diff options
| author | Martin Pool <mbp@samba.org> | 2002-03-25 04:36:56 +0000 |
|---|---|---|
| committer | Martin Pool <mbp@samba.org> | 2002-03-25 04:36:56 +0000 |
| commit | 435f1ed70d102873ef51a69e2b530fda20dd41c4 (patch) | |
| tree | 2b86436fd30d5e25b3b841e1c284108114002252 /Makefile.in | |
| parent | 94f34ca10a55352a33cde3529dec50a8038820ea (diff) | |
| download | android_external_rsync-435f1ed70d102873ef51a69e2b530fda20dd41c4.tar.gz android_external_rsync-435f1ed70d102873ef51a69e2b530fda20dd41c4.tar.bz2 android_external_rsync-435f1ed70d102873ef51a69e2b530fda20dd41c4.zip | |
Apparently SGI make doesn't like $< in non-implicit rules.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
