We now use lib/compat.o when building wildtest.
authorWayne Davison <wayned@samba.org>
Fri, 13 Jan 2006 21:38:43 +0000 (21:38 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 13 Jan 2006 21:38:43 +0000 (21:38 +0000)
Makefile.in

index 2e2f1ca..7cea601 100644 (file)
@@ -160,8 +160,8 @@ check: all $(CHECK_PROGS)
        POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin=`pwd`/rsync$(EXEEXT) srcdir="$(srcdir)" $(srcdir)/runtests.sh
 
 wildtest.o: wildtest.c lib/wildmatch.c rsync.h
-wildtest$(EXEEXT): wildtest.o
-       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o @BUILD_POPT@ $(LIBS)
+wildtest$(EXEEXT): wildtest.o lib/compat.o
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o lib/compat.o @BUILD_POPT@ $(LIBS)
 
 # This does *not* depend on building or installing: you can use it to
 # check a version installed from a binary or some other source tree,