Skip to content

Commit fe9528b

Browse files
committed
fix previous commit, need to escape dollar signs in makefile
1 parent 9da4cbd commit fe9528b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ dist: update_submodules remove-stale-tarballs dist-recursive
7878
@echo Decompressing monodevelop-$(PACKAGE_VERSION).tar.bz2
7979
@cd tarballs && tar xvjf monodevelop-$(PACKAGE_VERSION).tar.bz2
8080
cp version.config tarballs/monodevelop-$(PACKAGE_VERSION)
81-
sed -e 's/@$(MD_CONFIGURE)/#@$(MD_CONFIGURE)/g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
82-
sed -e 's~@cat $(buildinfo)~echo "echo 'not implemented';" > "$(top_builddir)/build/bin/buildinfo"~g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
81+
sed -i 's/@$$(MD_CONFIGURE)/#@$$(MD_CONFIGURE)/g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
82+
sed -i 's~@cat $$(buildinfo)~touch "$$(top_builddir)/build/bin/buildinfo"~g' tarballs/monodevelop-$(PACKAGE_VERSION)/Makefile.in
8383
@echo Generating merged tarball
8484
@cd tarballs && tar -cjf monodevelop-$(PACKAGE_VERSION).tar.bz2 monodevelop-$(PACKAGE_VERSION)
8585
@cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION)

0 commit comments

Comments
 (0)