[SCM] The rsync repository. - branch master updated
Rsync CVS commit messages <[email protected]> Fri, 29 Apr 2011 03:50:39 +0200 (CEST)
| Newsgroups | gmane.network.rsync.cvs |
|---|---|
| Message-ID | <[email protected]> |
The branch, master has been updated
via 3ed84db Don't die if man-copy fails.
from 0308092 Handle non-srcdir man copying when yodl isn't installed.
;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 3ed84dbc983a218ca1b7d49b0926c453784e3a45
Author: Wayne Davison <[email protected]>
Date: Thu Apr 28 18:50:21 2011 -0700
Don't die if man-copy fails.
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Changeset truncated at 500 lines:
diff --git a/Makefile.in b/Makefile.in
index 84b7ca4..e3ee747 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -184,8 +184,8 @@ proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c config.h
man: rsync.1 rsyncd.conf.5 man-copy
man-copy:
- @if test -f rsync.1; then :; else echo 'Copying srcdir rsync.1'; cp -p $(srcdir)/rsync.1 .; fi
- @if test -f rsyncd.conf.5; then :; else echo 'Copying srcdir rsyncd.conf.5'; cp -p $(srcdir)/rsyncd.conf.5 .; fi
+ @-if test -f rsync.1; then :; else echo 'Copying srcdir rsync.1'; cp -p $(srcdir)/rsync.1 .; fi
+ @-if test -f rsyncd.conf.5; then :; else echo 'Copying srcdir rsyncd.conf.5'; cp -p $(srcdir)/rsyncd.conf.5 .; fi
rsync.1: rsync.yo
yodl2man -o rsync.1 $(srcdir)/rsync.yo
--
The rsync repository.