|
@@ -528,7 +528,13 @@ endif
|
|
|
cd $(DEPS_DIR)/$(1) && ./configure; \
|
|
|
fi
|
|
|
ifeq ($(filter $(1),$(NO_AUTOPATCH)),)
|
|
|
- @$(call dep_autopatch,$(1))
|
|
|
+ @if [ "$(RABBITMQ_CLIENT_PATCH)" ]; then \
|
|
|
+ echo " PATCH Downloading extra RabbitMQ repositories..."; \
|
|
|
+ git clone https://github.com/rabbitmq/rabbitmq-codegen.git $(DEPS_DIR)/rabbitmq-codegen; \
|
|
|
+ git clone https://github.com/rabbitmq/rabbitmq-server.git $(DEPS_DIR)/rabbitmq-server; \
|
|
|
+ else \
|
|
|
+ $(call dep_autopatch,$(1)) \
|
|
|
+ fi
|
|
|
endif
|
|
|
endef
|
|
|
|