diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-12-08 11:39:56 -0800 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-12-08 11:39:56 -0800 |
commit | 0b3f3e1ad99bb9f3f41589a30cf81a696ddd9332 (patch) | |
tree | 8ba0ec278468e82173b7d182cc96fa3d1e9312b8 | |
parent | a05d2a0c05b553bf2f5dec78aade0bf4733e9852 (diff) | |
parent | 66e8777769ae1408dde499701e07e2bf2c598a21 (diff) |
Merge pull request #245 from rbrito/fix-makefile
Makefile: Don't use `echo`'s `-e` option for portability.
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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: |