From bbbdcf3746f7093bbef92c576266be019c97e208 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Wed, 12 Apr 2017 14:38:05 +0000 Subject: [PATCH] projects-dir.mk: Now use /bin/echo -e instead of echo On Debian, bash-builtin echo apparently doesn't understand -e and echoes it Signed-off-by: Jan Lindemann --- make/projects-dir.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/projects-dir.mk b/make/projects-dir.mk index 137571ee..ab8e484c 100644 --- a/make/projects-dir.mk +++ b/make/projects-dir.mk @@ -189,7 +189,7 @@ links.done: touch $@ ssh-wrapper.sh: Makefile - echo -e '#!/bin/bash -x\n\nexec /usr/bin/ssh $$JW_BUILD_SSH_EXTRA_OPTS "$$@"' > $@.tmp + /bin/echo -e '#!/bin/bash -x\n\nexec /usr/bin/ssh $$JW_BUILD_SSH_EXTRA_OPTS "$$@"' > $@.tmp chmod 700 $@.tmp mv $@.tmp $@ clean.ssh-wrapper: