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:
authorJo Shields <jo.shields@xamarin.com>2014-09-16 14:01:42 +0400
committerJo Shields <jo.shields@xamarin.com>2014-09-16 14:34:42 +0400
commita6ce3fd8982770e8d72bfdfb1cd8c5d2c11fdd6b (patch)
treea1fdd67e4cd6305788f6de5d84362f0bb04de70f /Makefile
parent4f5c61987a69aeef63a3b968894a616beecd2a51 (diff)
Forcibly remove all assemblies from generated tarball, for source-only build.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f5b1336007..e648cb3f01 100644
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,11 @@ dist: update_submodules remove-stale-tarballs dist-recursive
@cd main && make buildinfo
@cp main/build/bin/buildinfo tarballs/monodevelop-$(PACKAGE_VERSION)/
@echo Generating merged tarball
+ @find tarballs/monodevelop-$(PACKAGE_VERSION)/ -type f -a \
+ \( -name \*.exe -o \
+ -name \*.dll -o \
+ -name \*.mdb \) \
+ -delete
@cd tarballs && tar -cjf monodevelop-$(PACKAGE_VERSION).tar.bz2 monodevelop-$(PACKAGE_VERSION)
@cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION)