Skip to content

Commit 6eb04f1

Browse files
committed
Add export; before dialyzer is run to see what env vars are set.
1 parent 75b5258 commit 6eb04f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

erlang.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3321,7 +3321,7 @@ endef
33213321
$(DIALYZER_PLT): deps app
33223322
$(eval DEPS_LOG := $(shell test -f $(ERLANG_MK_TMP)/deps.log && \
33233323
while read p; do test -d $$p/ebin && echo $$p/ebin; done <$(ERLANG_MK_TMP)/deps.log))
3324-
$(verbose) dialyzer --build_plt $(DIALYZER_PLT_OPTS) --apps \
3324+
$(verbose) export; dialyzer --build_plt $(DIALYZER_PLT_OPTS) --apps \
33253325
erts kernel stdlib $(PLT_APPS) $(OTP_DEPS) $(LOCAL_DEPS) $(DEPS_LOG) || test $$? -eq 2
33263326
$(verbose) $(ERL) -eval 'io:format("~n~s~n", [code:lib_dir(erts)]), halt().' >> $@
33273327

0 commit comments

Comments
 (0)