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-30 10:30:32 +0400
committerTimotheus Pokorra <timotheus.pokorra@solidcharity.com>2014-05-30 10:30:32 +0400
commit6746db0983ecb7522f94d489318ee0ba250b6740 (patch)
tree87caf2b3e32514c3052717d33b71eca0e54e5ea4 /Makefile
parentfe9528b50cafad90cd2f39c535fa6111d7398a10 (diff)
improvement: the valid buildinfo file is now copied to the tarball
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 26b52b2d97..02841752cf 100644
--- a/Makefile
+++ b/Makefile
@@ -77,9 +77,10 @@ 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 -i 's/@$$(MD_CONFIGURE)/#@$$(MD_CONFIGURE)/g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
- sed -i 's~@cat $$(buildinfo)~touch "$$(top_builddir)/build/bin/buildinfo"~g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
+ @cp version.config tarballs/monodevelop-$(PACKAGE_VERSION)
+ @sed -i 's/@$$(MD_CONFIGURE)/#@$$(MD_CONFIGURE)/g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
+ @mkdir -p tarballs/monodevelop-$(PACKAGE_VERSION)/build/bin
+ @cp main/build/bin/buildinfo tarballs/monodevelop-$(PACKAGE_VERSION)/build/bin
@echo Generating merged tarball
@cd tarballs && tar -cjf monodevelop-$(PACKAGE_VERSION).tar.bz2 monodevelop-$(PACKAGE_VERSION)
@cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION)