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 <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-04-12 14:38:05 +00:00
commit bbbdcf3746

View file

@ -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: