aboutsummaryrefslogtreecommitdiffstats
path: root/test/core_app.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-09-27 19:11:27 +0200
committerLoïc Hoguin <[email protected]>2015-09-27 19:11:27 +0200
commit81e921429905bbb4cd97831b93cabfb056017888 (patch)
tree2a61ba9c3f3a3022cb102468c6ffc3e7a671829b /test/core_app.mk
parentfad3d20752edd48e1cb48c667e7f3e2e74a11517 (diff)
downloaderlang.mk-81e921429905bbb4cd97831b93cabfb056017888.tar.gz
erlang.mk-81e921429905bbb4cd97831b93cabfb056017888.tar.bz2
erlang.mk-81e921429905bbb4cd97831b93cabfb056017888.zip
Fix "repetition-operator operand invalid" error in tests on OSX
Diffstat (limited to 'test/core_app.mk')
-rw-r--r--test/core_app.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core_app.mk b/test/core_app.mk
index 4e0d1eb..f95d593 100644
--- a/test/core_app.mk
+++ b/test/core_app.mk
@@ -994,7 +994,7 @@ core-app-pt: build clean-core-app-pt
$t echo "COMPILE_FIRST += my_pt" >> $(APP)/Makefile
$i "Build the application; confirm the parse_transform is used"
- $t $(MAKE) -C $(APP) | grep "*** Running my_pt parse_transform."
+ $t $(MAKE) -C $(APP) | grep "Running my_pt parse_transform."
$i "Check that the application was compiled correctly"
$t $(ERL) -pa $(APP)/ebin/ -eval " \
@@ -1034,7 +1034,7 @@ core-app-pt-erlc-opts: build clean-core-app-pt-erlc-opts
$t echo "ERLC_OPTS += +'{parse_transform, my_pt}'" >> $(APP)/Makefile
$i "Build the application; confirm the parse_transform is used"
- $t $(MAKE) -C $(APP) | grep "*** Running my_pt parse_transform."
+ $t $(MAKE) -C $(APP) | grep "Running my_pt parse_transform."
$i "Check that the application was compiled correctly"
$t $(ERL) -pa $(APP)/ebin/ -eval " \