diff options
author | Loïc Hoguin <[email protected]> | 2023-05-04 14:51:01 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2023-05-04 14:51:01 +0200 |
commit | 2f61a6cfc060cc2e88cf67a27516c9f4a9f97b1b (patch) | |
tree | 151cf65cfbb8e1432dd854d4ba613fc359c55f6b /core | |
parent | ca57fa51f4b0610060c2d9eb56101bb4a33ad8c9 (diff) | |
download | erlang.mk-2f61a6cfc060cc2e88cf67a27516c9f4a9f97b1b.tar.gz erlang.mk-2f61a6cfc060cc2e88cf67a27516c9f4a9f97b1b.tar.bz2 erlang.mk-2f61a6cfc060cc2e88cf67a27516c9f4a9f97b1b.zip |
Remove rabbit/amqp_client packages and patches
We expect users to fetch these projects from hex.pm now
and the packages no longer worked.
Diffstat (limited to 'core')
-rw-r--r-- | core/deps.mk | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/core/deps.mk b/core/deps.mk index 7fc26a0..10621ea 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -766,22 +766,7 @@ endif .PHONY: autopatch-$(call dep_name,$1) autopatch-$(call dep_name,$1):: - $(verbose) if [ "$(1)" = "amqp_client" -a "$(RABBITMQ_CLIENT_PATCH)" ]; then \ - if [ ! -d $(DEPS_DIR)/rabbitmq-codegen ]; then \ - echo " PATCH Downloading rabbitmq-codegen"; \ - git clone https://github.com/rabbitmq/rabbitmq-codegen.git $(DEPS_DIR)/rabbitmq-codegen; \ - fi; \ - if [ ! -d $(DEPS_DIR)/rabbitmq-server ]; then \ - echo " PATCH Downloading rabbitmq-server"; \ - git clone https://github.com/rabbitmq/rabbitmq-server.git $(DEPS_DIR)/rabbitmq-server; \ - fi; \ - ln -s $(DEPS_DIR)/amqp_client/deps/rabbit_common-0.0.0 $(DEPS_DIR)/rabbit_common; \ - elif [ "$(1)" = "rabbit" -a "$(RABBITMQ_SERVER_PATCH)" ]; then \ - if [ ! -d $(DEPS_DIR)/rabbitmq-codegen ]; then \ - 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 \ + if [ "$1" = "elixir" -a "$(ELIXIR_PATCH)" ]; then \ ln -s lib/elixir/ebin $(DEPS_DIR)/elixir/; \ else \ $$(call dep_autopatch,$(call dep_name,$1)) \ |