Makefile: Stop producing the source archive compressed using Zip
... by default. This archive takes a lot of space: 6.5 MiB compared to 2.7 MiB for the .tar.gz one as of this commit. It's easy to uncompress a tar archive these days on Windows, so its usefulness is low. Furthermore, Unix tools are required to build RabbitMQ on Windows anyway.
This commit is contained in:
parent
f2326d82ba
commit
74d1d9212b
2
Makefile
2
Makefile
|
|
@ -35,7 +35,7 @@ include erlang.mk
|
|||
.PHONY: source-dist clean-source-dist
|
||||
|
||||
SOURCE_DIST_BASE ?= rabbitmq-server
|
||||
SOURCE_DIST_SUFFIXES ?= tar.xz zip
|
||||
SOURCE_DIST_SUFFIXES ?= tar.xz
|
||||
SOURCE_DIST ?= $(PACKAGES_DIR)/$(SOURCE_DIST_BASE)-$(PROJECT_VERSION)
|
||||
|
||||
# The first source distribution file is used by packages: if the archive
|
||||
|
|
|
|||
Loading…
Reference in New Issue