From b9648610ba7b0a66565412992df315e23c414d43 Mon Sep 17 00:00:00 2001 From: Felix Ruess Date: Wed, 17 Aug 2011 17:36:40 +0200 Subject: [PATCH] fix echo for systems where -e is not default, e.g. debian --- data/maps/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/maps/Makefile b/data/maps/Makefile index 6ceb046a40..fb7b72036a 100644 --- a/data/maps/Makefile +++ b/data/maps/Makefile @@ -10,8 +10,8 @@ $(DATADIR)/maps.google.com: $(DATADIR) FORCE wget -O $(@) http://maps.google.com/ $(PAPARAZZI_HOME)/conf/maps.xml: $(DATADIR)/maps.google.com - $(Q)echo "\n" > $(@) - $(Q)echo "" >> $(@) - $(Q)echo "" >> $(@) + $(Q)echo -e "\n" > $(@) + $(Q)echo -e "" >> $(@) + $(Q)echo -e "" >> $(@) FORCE: