summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@lshift.net>2009-07-28 15:47:11 +0100
committerMatthew Sackman <matthew@lshift.net>2009-07-28 15:47:11 +0100
commit3e3aa9ad4397dee291d64ebc84f3107cbca8dcc8 (patch)
tree0e05bb1b53b79a00b04c562711e6306657aa340a
parent48048bc16a23bf7af44f317409d5dcad1ddf667d (diff)
downloadrabbitmq-server-git-3e3aa9ad4397dee291d64ebc84f3107cbca8dcc8.tar.gz
If we don't do this then it means that scripts which call both run-node and start-background-node have to do different things for each of them wrt quoting of the RABBITMQ_SERVER_START_ARGS var, which is a pita. Thus it should always be requoted consistently.
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 67b5f6d5d7..cde58c3bb0 100644
--- a/Makefile
+++ b/Makefile
@@ -101,6 +101,7 @@ run-tests: all
start-background-node:
$(BASIC_SCRIPT_ENVIRONMENT_SETTINGS) \
RABBITMQ_NODE_ONLY=true \
+ RABBITMQ_SERVER_START_ARGS="$(RABBITMQ_SERVER_START_ARGS)" \
./scripts/rabbitmq-server -detached; sleep 1
start-rabbit-on-node: all