about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-12-08 11:39:56 -0800
committerPhilipp Hagemeister <phihag@phihag.de>2011-12-08 11:39:56 -0800
commit0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332 (patch)
tree8ba0ec278468e82173b7d182cc96fa3d1e9312b8
parenta05d2a0c05b553bf2f5dec78aade0bf4733e9852 (diff)
parent66e8777769ae1408dde499701e07e2bf2c598a21 (diff)
downloadyoutube-dl-0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332.tar.gz
youtube-dl-0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332.tar.xz
youtube-dl-0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332.zip
Merge pull request #245 from rbrito/fix-makefile
Makefile: Don't use `echo`'s `-e` option for portability.
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 07cc1eff7..b1a41079a 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: