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@xamarin.com>2014-11-13 20:17:02 +0300
committerAlan McGovern <alan@xamarin.com>2014-11-13 20:17:02 +0300
commit07b7b26adf6d3b9d3960639b078639b4be78920d (patch)
tree38c79571a6a4bd23b02d954352eab997eec175f4 /main/external/Makefile.am
parent189b27fe201e5052a6308a8a1db8018f7514d839 (diff)
[build] Always copy system xamarin.mac locally
If someone installs a new xam.mac we should not keep the old one lying around and force them to clean their checkout in order to build.
Diffstat (limited to 'main/external/Makefile.am')
-rw-r--r--main/external/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/external/Makefile.am b/main/external/Makefile.am
index 2ee4d9a055..35dcd41745 100644
--- a/main/external/Makefile.am
+++ b/main/external/Makefile.am
@@ -9,8 +9,8 @@ all: Xamarin.Mac.dll
$(MAKE) -C monomac/src
Xamarin.Mac.dll: /Library/Frameworks/Xamarin.Mac.framework/Versions/Current/lib/i386/full/Xamarin.Mac.dll
- cp $< $@
- cp $<.mdb $@.mdb
+ cp -p $< $@
+ cp -p $<.mdb $@.mdb
clean:
$(MAKE) -C monomac/src clean
@@ -39,3 +39,4 @@ dist-clean:
fi \
done
+.PHONY: Xamarin.Mac.dll