From: Andrew Tridgell Date: Tue, 13 Jan 1998 19:25:59 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/6bbbc08b83d2d2598a894439a1392c84a67168e2 *** empty log message *** --- diff --git a/Makefile.in b/Makefile.in index aecfd835..ce49f976 100644 --- a/Makefile.in +++ b/Makefile.in @@ -30,7 +30,9 @@ OBJS=$(OBJS1) flist.o io.o compat.o hlink.o token.o uidlist.o $(LIBOBJ) all: rsync install: all + -mkdir -p ${INSTALL_BIN} ${INSTALLCMD} -m 755 rsync ${INSTALL_BIN} + -mkdir -p ${INSTALL_MAN}/man1 ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${INSTALL_MAN}/man1 rsync: $(OBJS) diff --git a/rsync.c b/rsync.c index ea15ac84..682b2c4e 100644 --- a/rsync.c +++ b/rsync.c @@ -406,7 +406,7 @@ void recv_generator(char *fname,struct file_list *flist,int i,int f_out) return; } - if (update_only && st.st_mtime >= file->modtime) { + if (update_only && st.st_mtime > file->modtime) { if (verbose > 1) fprintf(FERROR,"%s is newer\n",fname); return;