diff options
author | Loïc Hoguin <[email protected]> | 2024-11-21 16:41:16 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-11-21 16:41:16 +0100 |
commit | 45c53065ec7d41e46d4eddb4f0c80adb75249bb4 (patch) | |
tree | 1a03fb690a655d54d0e4e821f3b839ece12e248e /core | |
parent | 9376f53f549c05cf692d0e259763049a039e96eb (diff) | |
download | erlang.mk-45c53065ec7d41e46d4eddb4f0c80adb75249bb4.tar.gz erlang.mk-45c53065ec7d41e46d4eddb4f0c80adb75249bb4.tar.bz2 erlang.mk-45c53065ec7d41e46d4eddb4f0c80adb75249bb4.zip |
Reinstate dep_name as it's still used by RabbitMQ plugins
It will be removed at a later date.
Diffstat (limited to 'core')
-rw-r--r-- | core/deps.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/deps.mk b/core/deps.mk index 310db80..7819f90 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -111,6 +111,10 @@ query_extra_fail = - query_absolute_path = $(addprefix $(DEPS_DIR)/,$(call query_name,$1)) +# Deprecated legacy query function. Used by RabbitMQ and its third party plugins. +# Can be removed once RabbitMQ has been updated and enough time has passed. +dep_name = $(call query_name,$(1)) + # Application directories. LOCAL_DEPS_DIRS = $(foreach a,$(LOCAL_DEPS),$(if $(wildcard $(APPS_DIR)/$a),$(APPS_DIR)/$a)) |