From e9ec46f5e93358c2220205a8c7ee2e51b7535d43 Mon Sep 17 00:00:00 2001 From: hans-christoph Date: Wed, 15 Jul 2009 14:33:59 +0000 Subject: Fix: "echo -e" wird auf dem WWW-Rechner nicht erkannt. git-svn-id: https://svn.neo-layout.org@1935 b9310e46-f624-0410-8ea1-cfbb3a30dc96 --- Compose/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Compose/Makefile') 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 \ -- cgit v1.2.3