summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2011-09-16 16:40:03 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2011-09-16 16:40:03 +0100
commit7d219c1e101fa41e6f447e8a6ee66e3bb974884b (patch)
tree73e67d1dad26253dd2c6a2519370f37d73964dba /Makefile
parenta3cf7d226fd1568f57e409efb6aade676683f832 (diff)
downloadrabbitmq-server-git-7d219c1e101fa41e6f447e8a6ee66e3bb974884b.tar.gz
fix a recursive compilation issue
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 517df80f08..626f6999dc 100644
--- a/Makefile
+++ b/Makefile
@@ -109,7 +109,7 @@ plugins:
[ -d "$(PLUGINS_SRC_DIR)" ] || { echo "No plugins source distribution found (try linking public-umbrella to $(PLUGINS_SRC_DIR)"; false; }
-ln -s .. "$(PLUGINS_SRC_DIR)/rabbitmq-server"
mkdir -p provided_plugins
- $(MAKE) -C "$(PLUGINS_SRC_DIR)" plugins-dist PLUGINS_DIST_DIR="$(CURDIR)/provided_plugins" VERSION=$(VERSION)
+ PLUGINS_SRC_DIR="" $(MAKE) -C "$(PLUGINS_SRC_DIR)" plugins-dist PLUGINS_DIST_DIR="$(CURDIR)/provided_plugins" VERSION=$(VERSION)
else
plugins:
# Not building plugins