From: Fabian Keil <fk@fabiankeil.de>
Date: Tue, 2 Feb 2016 13:08:03 +0000 (+0000)
Subject: Let rsync skip files if the checksums match
X-Git-Tag: v_3_0_25~158
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/user-manual/coding.html?a=commitdiff_plain;h=4e085026d30008d351868d37da769a45d5fb36e8;p=privoxy.git

Let rsync skip files if the checksums match
---

diff --git a/GNUmakefile.in b/GNUmakefile.in
index c82dd2fe..808fe39c 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -1,6 +1,6 @@
 # Note:  Makefile is built automatically from Makefile.in
 #
-# $Id: GNUmakefile.in,v 1.232 2016/01/22 11:31:15 fabiankeil Exp $
+# $Id: GNUmakefile.in,v 1.233 2016/01/23 11:58:18 fabiankeil Exp $
 #
 # Written by and Copyright (C) 2001-2014 members of the
 # Privoxy team. http://www.privoxy.org/
@@ -144,7 +144,7 @@ DOC_DIR    = doc/source
 DOC_TMP    = $(DOC_DIR)/tmp
 DOC_STATUS = @DOC_STATUS@
 TIDY       = tidy -modify -indent -wrap 78 --tidy-mark no
-RSYNC	   = rsync -av
+RSYNC	   = rsync -av -c
 
 # Program to do LF->CRLF
 DOSFILTER  = $(PERL) -p -e 's/\n/\r\n/'