aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/dialyzer.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-05-07 12:11:38 +0200
committerLoïc Hoguin <[email protected]>2018-05-07 12:11:38 +0200
commitc5250f4c82ce8d5cde4f65e0c690a923092807e6 (patch)
tree0be1c7cd71c49cb468d8906e7557b58374ce2970 /plugins/dialyzer.mk
parent4522af8cc771c7f6f1ac2712a1c4e9e023dafe50 (diff)
downloaderlang.mk-c5250f4c82ce8d5cde4f65e0c690a923092807e6.tar.gz
erlang.mk-c5250f4c82ce8d5cde4f65e0c690a923092807e6.tar.bz2
erlang.mk-c5250f4c82ce8d5cde4f65e0c690a923092807e6.zip
Escape double quotes when passing ERLC_OPTS during tests
Diffstat (limited to 'plugins/dialyzer.mk')
-rw-r--r--plugins/dialyzer.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dialyzer.mk b/plugins/dialyzer.mk
index e7f502e..63e64b8 100644
--- a/plugins/dialyzer.mk
+++ b/plugins/dialyzer.mk
@@ -57,4 +57,4 @@ dialyze:
else
dialyze: $(DIALYZER_PLT)
endif
- $(verbose) dialyzer --no_native `$(ERL) -eval "$(subst $(newline),,$(subst ",\",$(call filter_opts.erl)))" -extra $(ERLC_OPTS)` $(DIALYZER_DIRS) $(DIALYZER_OPTS)
+ $(verbose) dialyzer --no_native `$(ERL) -eval "$(subst $(newline),,$(call escape_dquotes,$(call filter_opts.erl)))" -extra $(ERLC_OPTS)` $(DIALYZER_DIRS) $(DIALYZER_OPTS)