Skip to content

Commit 25f45fc

Browse files
authored
Merge pull request #408 from rabbitmq/package-plugins-as-directories-by-default
rabbitmq-dist.mk: Package plugins as directories by default instead of .ez archives
2 parents a127b7f + 9d62a6d commit 25f45fc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

deps/rabbit_common/mk/rabbitmq-dist.mk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ CLI_SCRIPTS_DIR = sbin
55
CLI_ESCRIPTS_DIR = escript
66
MIX = echo y | mix
77

8+
# Set $(DIST_AS_EZS) to a non-empty value to enable the packaging of
9+
# plugins as .ez archives.
810
ifeq ($(USE_RABBIT_BOOT_SCRIPT),)
9-
DIST_AS_EZS ?= true
10-
else
1111
DIST_AS_EZS ?=
12+
else
13+
DIST_AS_EZS =
1214
endif
1315

1416
dist_verbose_0 = @echo " DIST " $@;

0 commit comments

Comments
 (0)