From: Philipp Hagemeister Date: Thu, 8 Dec 2011 19:39:56 +0000 (-0800) Subject: Merge pull request #245 from rbrito/fix-makefile X-Git-Url: http://git.jankratochvil.net/?p=youtube-dl.git;a=commitdiff_plain;h=0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332;hp=a05d2a0c05b553bf2f5dec78aade0bf4733e9852 Merge pull request #245 from rbrito/fix-makefile Makefile: Don't use `echo`'s `-e` option for portability. --- diff --git a/Makefile b/Makefile index 07cc1ef..b1a4107 100644 --- a/Makefile +++ b/Makefile @@ -10,9 +10,11 @@ update-readme: header=$$(sed -e '/.*## OPTIONS/,$$ d' README.md) && \ footer=$$(sed -e '1,/.*## FAQ/ d' README.md) && \ echo "$${header}" > README.md && \ - echo -e '\n## OPTIONS' >> README.md && \ + echo >> README.md && \ + echo '## OPTIONS' >> README.md && \ echo "$${options}" >> README.md&& \ - echo -e '\n## FAQ' >> README.md && \ + echo >> README.md && \ + echo '## FAQ' >> README.md && \ echo "$${footer}" >> README.md compile: