diff options
Diffstat (limited to 'test/core_deps.mk')
-rw-r--r-- | test/core_deps.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core_deps.mk b/test/core_deps.mk index b89b885..174147b 100644 --- a/test/core_deps.mk +++ b/test/core_deps.mk @@ -123,12 +123,12 @@ core-deps-apps-build-count: build clean $i "Create a new application app_one" $t $(MAKE) -C $(APP) new-app in=app_one $v $t echo "all::" >> $(APP)/apps/app_one/Makefile - $t echo " @echo -n '#' >> count" >> $(APP)/apps/app_one/Makefile + $t echo " @printf '#' >> count" >> $(APP)/apps/app_one/Makefile $i "Create a new application app_two" $t $(MAKE) -C $(APP) new-app in=app_two $v $t echo "all::" >> $(APP)/apps/app_two/Makefile - $t echo " @echo -n '#' >> count" >> $(APP)/apps/app_two/Makefile + $t echo " @printf '#' >> count" >> $(APP)/apps/app_two/Makefile $i "Build the application" $t $(MAKE) -C $(APP) $v |