From a6fb4d82bb86bff816d1fe605f8e430a868ada5a Mon Sep 17 00:00:00 2001 From: Jules Villard Date: Fri, 18 Dec 2015 08:09:54 -0800 Subject: [PATCH] do not use --delete when rsyncing annotations Reviewed By: jberdine Differential Revision: D2773752 fb-gh-sync-id: 6d347ee --- infer/src/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infer/src/Makefile.in b/infer/src/Makefile.in index de32f4709..a9af5d95a 100644 --- a/infer/src/Makefile.in +++ b/infer/src/Makefile.in @@ -198,16 +198,16 @@ build_checkCopyright: ifeq (@ENABLE_OCAML_ANNOT@,yes) java_annotations: build_java - rsync -a --delete --include '*/' --include '*.annot' --exclude '*' $(JAVA_BUILD_DIR)/ $(ANNOT_DIR)/ + rsync -a --include '*/' --include '*.annot' --exclude '*' $(JAVA_BUILD_DIR)/ $(ANNOT_DIR)/ clang_annotations: build_clang - rsync -a --delete --include '*/' --include '*.annot' --exclude '*' $(CLANG_BUILD_DIR)/ $(ANNOT_DIR)/ + rsync -a --include '*/' --include '*.annot' --exclude '*' $(CLANG_BUILD_DIR)/ $(ANNOT_DIR)/ llvm_annotations: build_llvm - rsync -a --delete --include '*/' --include '*.annot' --exclude '*' $(LLVM_BUILD_DIR)/ $(ANNOT_DIR)/ + rsync -a --include '*/' --include '*.annot' --exclude '*' $(LLVM_BUILD_DIR)/ $(ANNOT_DIR)/ scripts_annotations: build_checkCopyright - rsync -a --delete --include '*/' --include '*.annot' --exclude '*' $(SCRIPTS_BUILD_DIR)/ $(ANNOT_DIR)/ + rsync -a --include '*/' --include '*.annot' --exclude '*' $(SCRIPTS_BUILD_DIR)/ $(ANNOT_DIR)/ java: java_annotations clang: clang_annotations