diff options
| -rw-r--r-- | rabbitmq-components.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rabbitmq-components.mk b/rabbitmq-components.mk index 708c7e5b8c..a78ff1ad24 100644 --- a/rabbitmq-components.mk +++ b/rabbitmq-components.mk @@ -1,3 +1,10 @@ +ifeq ($(.DEFAULT_GOAL),) +# Define default goal to `all` because this file defines soem targets +# before the inclusion of erlang.mk leading the wrong target becoming +# the default. +.DEFAULT_GOAL = all +endif + # For RabbitMQ repositories, we want to checkout branches which match # the parent project. For instance, if the parent project is on a # release tag, dependencies must be on the same release tag. If the |
