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:42:28 +0400
committerTimotheus Pokorra <timotheus.pokorra@solidcharity.com>2014-05-28 00:42:28 +0400
commitfe9528b50cafad90cd2f39c535fa6111d7398a10 (patch)
tree02e6eeb527d8eed16ec8c7fde6a67f23079f4519 /Makefile
parent9da4cbdf7e266370f92cfb9b84a65458bfa06b97 (diff)
fix previous commit, need to escape dollar signs in makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 049753483c..26b52b2d97 100644
--- a/Makefile
+++ b/Makefile
@@ -78,8 +78,8 @@ 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)
- 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
+ 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
@echo Generating merged tarball
@cd tarballs && tar -cjf monodevelop-$(PACKAGE_VERSION).tar.bz2 monodevelop-$(PACKAGE_VERSION)
@cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION)