youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332
parent a05d2a0c05b553bf2f5dec78aade0bf4733e9852
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu,  8 Dec 2011 11:39:56 -0800

Merge pull request #245 from rbrito/fix-makefile

Makefile: Don't use `echo`'s `-e` option for portability.
Diffstat:
MMakefile | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 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: