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:
authorMarius Ungureanu <teromario@yahoo.com>2018-02-16 22:31:46 +0300
committerGitHub <noreply@github.com>2018-02-16 22:31:46 +0300
commite1de20f0eec6d66e78cf0640f00b03c1afcf7f23 (patch)
tree95b19ddbcb127cbb8e28498f6d8f85eda99e2fa9 /Makefile
parente3dd7658390a3c13231449cbc3fac9cdf11e1775 (diff)
Make dist2 (#3879)
* Fix `make dist` (cherry picked from commit 7732445e89434e17ff1e0217a640d841b29d5fc9) * Don't strip assemblies from tarballs. It'll make distro packagers cry, but the tarballs will actually work. (cherry picked from commit b1820981f8acced4d4b721ce44ed5860ce8fb758) * Include case-sensitivity fix from NRefactory * Ensure BuildVariables.cs is up to date and in `make dist` tarballs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index c87bdb6694..8cd940aae7 100644
--- a/Makefile
+++ b/Makefile
@@ -103,15 +103,11 @@ dist: update_submodules remove-stale-tarballs dist-recursive
@echo Decompressing monodevelop-$(PACKAGE_VERSION).tar.bz2
@cd tarballs && tar xvjf monodevelop-$(PACKAGE_VERSION).tar.bz2
@cp version.config tarballs/monodevelop-$(PACKAGE_VERSION)
+ @cp NuGet.config tarballs/monodevelop-$(PACKAGE_VERSION)
@rm -f main/build/bin/buildinfo
@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)