From e1de20f0eec6d66e78cf0640f00b03c1afcf7f23 Mon Sep 17 00:00:00 2001 From: Marius Ungureanu Date: Fri, 16 Feb 2018 21:31:46 +0200 Subject: 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 --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3