aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2002-03-25 04:36:56 +0000
committerMartin Pool <mbp@samba.org>2002-03-25 04:36:56 +0000
commit435f1ed70d102873ef51a69e2b530fda20dd41c4 (patch)
tree2b86436fd30d5e25b3b841e1c284108114002252 /Makefile.in
parent94f34ca10a55352a33cde3529dec50a8038820ea (diff)
downloadandroid_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.in2
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)