diff options
author | hans-christoph <hans-christoph@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-07-15 14:33:59 +0000 |
---|---|---|
committer | hans-christoph <hans-christoph@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-07-15 14:33:59 +0000 |
commit | e9ec46f5e93358c2220205a8c7ee2e51b7535d43 (patch) | |
tree | f3bdc68d736c700f501b9538ea6338a54e5713fb | |
parent | c5bded3607809b3dd528b0c0c286bf05ee0387d2 (diff) |
Fix: "echo -e" wird auf dem WWW-Rechner nicht erkannt.
git-svn-id: https://svn.neo-layout.org@1935 b9310e46-f624-0410-8ea1-cfbb3a30dc96
-rw-r--r-- | Compose/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Compose/Makefile b/Compose/Makefile index 364964f..8dcd057 100644 --- a/Compose/Makefile +++ b/Compose/Makefile @@ -25,15 +25,17 @@ all : $(addprefix XCompose_, $(DEFAULTS)) XCompose%: FORCE @echo Creating file $@ - @echo -e "#\n# Automatically generated file. Do not edit.\n#" >$@ ;\ + @echo "#" >$@ ;\ + @echo "# Automatically generated file. Do not edit." >$@ ;\ + @echo "#" >$@ ;\ for i in \ `echo $@ | sed -e 's/XCompose//;s/_/ /g'`;\ do \ export fn=$(SRC)/$$i.module;\ if [ -e $$fn ]; then \ - echo -e "\n#\n# begin include module $$i\n#\n" >>$@ ;\ + echo "# begin include module $$i" >>$@ ;\ cat $$fn >>$@ ;\ - echo -e "\n#\n# end include module $$i\n#\n" >>$@ ;\ + echo "# end include module $$i" >>$@ ;\ else \ echo "*** Warning: file $$fn not found";\ fi \ |