diff options
author | Loïc Hoguin <[email protected]> | 2016-10-29 17:41:27 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-10-29 17:41:27 +0300 |
commit | cb2f3039633f09e99dc99d03301ef6d57bb33a95 (patch) | |
tree | 3b3e0e2669895211363ce6dbf41f2a6272d9ef2c | |
parent | 5b304e2c987cf30965293b520912ef39771059e1 (diff) | |
download | erlang.mk-cb2f3039633f09e99dc99d03301ef6d57bb33a95.tar.gz erlang.mk-cb2f3039633f09e99dc99d03301ef6d57bb33a95.tar.bz2 erlang.mk-cb2f3039633f09e99dc99d03301ef6d57bb33a95.zip |
Fix broken test on OSX
-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 |