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:
authorTimotheus Pokorra <timotheus.pokorra@solidcharity.com>2014-05-28 00:15:13 +0400
committerTimotheus Pokorra <timotheus.pokorra@solidcharity.com>2014-05-28 00:15:13 +0400
commit9da4cbdf7e266370f92cfb9b84a65458bfa06b97 (patch)
tree66493d40433159442beb41ba0c43d1221212ec56 /Makefile
parent76793bb2e1d7edb65cae9b7622ae4ce7fc8202a7 (diff)
address the problems with version.config missing in the tarball, and the scripts directory.
do not call scripts/configure.cs in the tarball, because it tries to resolve the version from the git history
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e307741653..049753483c 100644
--- a/Makefile
+++ b/Makefile
@@ -77,6 +77,9 @@ dist: update_submodules remove-stale-tarballs dist-recursive
@rm -rf tarballs/external
@echo Decompressing monodevelop-$(PACKAGE_VERSION).tar.bz2
@cd tarballs && tar xvjf monodevelop-$(PACKAGE_VERSION).tar.bz2
+ cp version.config tarballs/monodevelop-$(PACKAGE_VERSION)
+ sed -e 's/@$(MD_CONFIGURE)/#@$(MD_CONFIGURE)/g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
+ sed -e 's~@cat $(buildinfo)~echo "echo 'not implemented';" > "$(top_builddir)/build/bin/buildinfo"~g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
@echo Generating merged tarball
@cd tarballs && tar -cjf monodevelop-$(PACKAGE_VERSION).tar.bz2 monodevelop-$(PACKAGE_VERSION)
@cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION)