summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2015-10-26 11:59:58 +0100
committerJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2015-10-26 11:59:58 +0100
commit3f7c064ee70857b1f840c2e848fa88638c900fe9 (patch)
tree80efa49f6ffa6f5ae42679ba6fdac3556562a720 /Makefile
parent9fff8bdeb0325c9651f0a00713763b99ffe56749 (diff)
downloadrabbitmq-server-git-3f7c064ee70857b1f840c2e848fa88638c900fe9.tar.gz
make source-dist: Filter out `rabbit` from the dependencies list
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 921f0098f8..85c575baa7 100644
--- a/Makefile
+++ b/Makefile
@@ -198,7 +198,7 @@ $(SOURCE_DIST): $(ERLANG_MK_RECURSIVE_DEPS_LIST)
$(gen_verbose) $(RSYNC) $(RSYNC_FLAGS) ./ $(SOURCE_DIST)/
$(verbose) cat packaging/common/LICENSE.head > $(SOURCE_DIST)/LICENSE
$(verbose) mkdir -p $(SOURCE_DIST)/deps
- $(verbose) for dep in $$(cat $(ERLANG_MK_RECURSIVE_DEPS_LIST)); do \
+ $(verbose) for dep in $$(cat $(ERLANG_MK_RECURSIVE_DEPS_LIST) | grep -v '/rabbit$$'); do \
$(RSYNC) $(RSYNC_FLAGS) \
$$dep \
$(SOURCE_DIST)/deps; \