Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2012-07-06 14:41:03 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-07-06 14:41:03 +0400
commitce5c6badbf55f3a327d375aeac27655c72cf699d (patch)
tree4060da421a817c4a29dec2b7f90ccfe8739f4e40 /main/external/Makefile.am
parent496d1cc8a98efeeb62ad2fd408f4de2aebf4849e (diff)
[build] Only copy the binaries from external/* if they're newer
When we build the binaries in main/external we should only copy them into the build directory if they're newer. This prevents things from constantly rebuilding.
Diffstat (limited to 'main/external/Makefile.am')
-rw-r--r--main/external/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/external/Makefile.am b/main/external/Makefile.am
index 1bfab4b5a9..e5ee3048cb 100644
--- a/main/external/Makefile.am
+++ b/main/external/Makefile.am
@@ -21,7 +21,7 @@ all:
xbuild /property:CodePage=65001 $(NGIT)
xbuild /property:CodePage=65001 $(CECIL)
for binary in $(BINARIES); do \
- cp $$binary $(OUTPUT)/; \
+ rsync -u $$binary $(OUTPUT)/ || exit 1; \
done
clean: