summaryrefslogtreecommitdiff
path: root/Compose/Makefile
diff options
context:
space:
mode:
authorhans-christoph <hans-christoph@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-07-15 14:33:59 +0000
committerhans-christoph <hans-christoph@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-07-15 14:33:59 +0000
commite9ec46f5e93358c2220205a8c7ee2e51b7535d43 (patch)
treef3bdc68d736c700f501b9538ea6338a54e5713fb /Compose/Makefile
parentc5bded3607809b3dd528b0c0c286bf05ee0387d2 (diff)
downloadneo-layout-e9ec46f5e93358c2220205a8c7ee2e51b7535d43.tar.gz
neo-layout-e9ec46f5e93358c2220205a8c7ee2e51b7535d43.tar.bz2
neo-layout-e9ec46f5e93358c2220205a8c7ee2e51b7535d43.zip
Fix: "echo -e" wird auf dem WWW-Rechner nicht erkannt.
git-svn-id: https://svn.neo-layout.org@1935 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'Compose/Makefile')
-rw-r--r--Compose/Makefile8
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 \