From c02adb19ba019716bea47ed13e852d202c2e3a16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 26 Nov 2018 19:12:26 +0100 Subject: Remove some non-portable "echo -e" from a couple tests --- test/core_plugins.mk | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'test/core_plugins.mk') diff --git a/test/core_plugins.mk b/test/core_plugins.mk index ac6b103..4ab71fb 100644 --- a/test/core_plugins.mk +++ b/test/core_plugins.mk @@ -47,7 +47,7 @@ core-plugins-early: build clean $i "Write external plugin adddep_plugin" $t mkdir $(APP)/adddep_plugin - $t echo -e "DEPS += cowlib" >> $(APP)/adddep_plugin/early-plugins.mk + $t echo "DEPS += cowlib" >> $(APP)/adddep_plugin/early-plugins.mk $i "Inject external plugin dependencies into $(APP)" $t echo 'DEPS = ranch' >> $(APP)/Makefile.tmp @@ -227,11 +227,13 @@ core-plugins-test: build clean $i "Write external plugin touch_plugin" $t mkdir $(APP)/touch_plugin - $t echo -e "app::" >> $(APP)/touch_plugin/plugins.mk - $t echo -e "\ttouch markerfile" >> $(APP)/touch_plugin/plugins.mk - $t echo -e "test-build:: app" >> $(APP)/touch_plugin/plugins.mk - $t echo -e "clean::" >> $(APP)/touch_plugin/plugins.mk - $t echo -e "\trm -f markerfile" >> $(APP)/touch_plugin/plugins.mk + $t printf "%s\n" \ + "app::" \ + " touch markerfile" \ + "test-build:: app" \ + "clean::" \ + " rm -f markerfile" \ + > $(APP)/touch_plugin/plugins.mk $i "Inject external plugin dependencies into $(APP)" $t echo 'BUILD_DEPS = touch_plugin' >> $(APP)/Makefile.tmp -- cgit v1.2.3