summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2017-07-20 09:27:59 +0200
committerJosé Valim <jose.valim@plataformatec.com.br>2017-07-20 09:27:59 +0200
commit72c3a8f3a635ebbf62a54ed2ac318bc5d172fcca (patch)
tree188ebac4eca124a2b73c23c03ce996c94e6d34d1 /Makefile
parenta560a9feeeacef034a6a155552195d2374c0f764 (diff)
downloadelixir-72c3a8f3a635ebbf62a54ed2ac318bc5d172fcca.tar.gz
Also require 19.0 on Makefile, closes #6363
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 911a72e37..94220719c 100644
--- a/Makefile
+++ b/Makefile
@@ -22,9 +22,9 @@ GIT_TAG = $(strip $(shell head="$(call GIT_REVISION)"; git tag --points-at $$hea
#==> Functions
define CHECK_ERLANG_RELEASE
- $(Q) erl -noshell -eval '{V,_} = string:to_integer(erlang:system_info(otp_release)), io:fwrite("~s", [is_integer(V) and (V >= 18)])' -s erlang halt | grep -q '^true'; \
+ $(Q) erl -noshell -eval '{V,_} = string:to_integer(erlang:system_info(otp_release)), io:fwrite("~s", [is_integer(V) and (V >= 19)])' -s erlang halt | grep -q '^true'; \
if [ $$? != 0 ]; then \
- echo "At least Erlang 18.0 is required to build Elixir"; \
+ echo "At least Erlang 19.0 is required to build Elixir"; \
exit 1; \
fi;
endef