summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2011-09-08 13:06:27 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2011-09-08 13:06:27 +0100
commitf2ac67c88d06dec3ce18eb1a9777ea37eb3334d0 (patch)
tree381f88312035b03d6c23c77ff3c2394d0530f5f5
parent81e21b46b5a03c5be6efabe8d5fb275604ccb6b9 (diff)
downloadrabbitmq-server-git-f2ac67c88d06dec3ce18eb1a9777ea37eb3334d0.tar.gz
fix the plugins srcdist before attempting to build the plugins
We don't include the broker in the srcdist, so we link it in before attempting the build.
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 120f5eae6e..5dfea33fc6 100644
--- a/Makefile
+++ b/Makefile
@@ -104,6 +104,7 @@ all: $(TARGETS)
plugins:
[ -d "plugins-src" ] || echo No plugins source distribution found
+ ln -s .. plugins-src/rabbitmq-server
mkdir -p provided_plugins
$(MAKE) -C plugins-src plugins-dist PLUGINS_DIST_DIR=$(CURDIR)/provided_plugins VERSION=$(VERSION)