From f53fd8b42729937213a813622f6d4b54ebc09f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 30 Nov 2018 14:05:03 +0100 Subject: Support Elixir as a dependency via ELIXIR_PATCH=1 For example: DEPS = elixir ELIXIR_PATCH = 1 include erlang.mk A language test suite will soon be added with a test for this. --- core/deps.mk | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/deps.mk') diff --git a/core/deps.mk b/core/deps.mk index 0efde17..b55e31c 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -665,6 +665,8 @@ ifeq ($(filter $(1),$(NO_AUTOPATCH)),) echo " PATCH Downloading rabbitmq-codegen"; \ git clone https://github.com/rabbitmq/rabbitmq-codegen.git $(DEPS_DIR)/rabbitmq-codegen; \ fi \ + elif [ "$1" = "elixir" -a "$(ELIXIR_PATCH)" ]; then \ + ln -s lib/elixir/ebin $(DEPS_DIR)/elixir/; \ else \ $$(call dep_autopatch,$(DEP_NAME)) \ fi -- cgit v1.2.3