summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2015-11-02 12:32:00 +0100
committerJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2015-11-02 12:32:00 +0100
commit695e7f53dc04465d5a34a5b3825b78abf3d54ac1 (patch)
treebfd4fa243f5266ef5bc04740f3056da739d9548d
parent62cccd99e6172ff94c5559cd429a7fa03b69dcd1 (diff)
downloadrabbitmq-server-git-695e7f53dc04465d5a34a5b3825b78abf3d54ac1.tar.gz
Makefile: Support V=2
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e1a2169a26..2c1be40bbb 100644
--- a/Makefile
+++ b/Makefile
@@ -175,6 +175,7 @@ source-dist: $(SOURCE_DIST_FILES)
RSYNC ?= rsync
RSYNC_V_0 =
RSYNC_V_1 = -v
+RSYNC_V_2 = -v
RSYNC_V = $(RSYNC_V_$(V))
RSYNC_FLAGS += -a $(RSYNC_V) \
--exclude '.sw?' --exclude '.*.sw?' \
@@ -200,6 +201,7 @@ RSYNC_FLAGS += -a $(RSYNC_V) \
TAR ?= tar
TAR_V_0 =
TAR_V_1 = -v
+TAR_V_2 = -v
TAR_V = $(TAR_V_$(V))
GZIP ?= gzip
@@ -209,6 +211,7 @@ XZ ?= xz
ZIP ?= zip
ZIP_V_0 = -q
ZIP_V_1 =
+ZIP_V_2 =
ZIP_V = $(ZIP_V_$(V))
.PHONY: $(SOURCE_DIST)