diff options
author | Wayne Davison <wayned@samba.org> | 2007-11-30 19:02:50 -0800 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-11-30 19:02:50 -0800 |
commit | 091b3459f6e89ff3f04b8287e490789011586461 (patch) | |
tree | 1216be6ba9bd5c283f8eacc1519d4e5341c7f53e /Makefile.in | |
parent | 85cdbb6be34abecfeaedac7810fdf88f418aa619 (diff) | |
download | rsync-091b3459f6e89ff3f04b8287e490789011586461.tar.gz rsync-091b3459f6e89ff3f04b8287e490789011586461.tar.bz2 rsync-091b3459f6e89ff3f04b8287e490789011586461.zip |
Fixed a build problem for those building in a different dir from
the srcdir. Also got rid of "cd" code in configure stub.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index fcc79d09..c0908462 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,8 +127,8 @@ proto: proto.h-tstamp proto.h: proto.h-tstamp @echo ' ' >/dev/null -proto.h-tstamp: *.c lib/compat.c - perl mkproto.pl *.c lib/compat.c +proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c + perl mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c man: rsync.1 rsyncd.conf.5 |