summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-09-28 16:10:00 +0100
committerSimon MacMullen <simon@rabbitmq.com>2011-09-28 16:10:00 +0100
commit0b7c17f7241cca7558d79f2db20c57a0f338db4b (patch)
tree30f4f6c744a32667a905a69d5d7f1c5ca40f2ce7
parentc8ee48cbf79c676dea8ba7a3a4144888cdf6724a (diff)
downloadrabbitmq-server-0b7c17f7241cca7558d79f2db20c57a0f338db4b.tar.gz
Further oops, we now depend on everything being built before running run-background-node, otherwise we have two make processes tryi9ng to compile at the same time and they tread on each other.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 163fcf9a..9c069093 100644
--- a/Makefile
+++ b/Makefile
@@ -186,7 +186,7 @@ run-tests: all
run-qc: all
$(foreach MOD,$(QC_MODULES),./quickcheck $(RABBITMQ_NODENAME) $(MOD) $(QC_TRIALS))
-start-background-node:
+start-background-node: all
-rm -f $(RABBITMQ_MNESIA_DIR).pid
mkdir -p $(RABBITMQ_MNESIA_DIR)
setsid sh -c "$(MAKE) run-background-node > $(RABBITMQ_MNESIA_DIR)/startup_log 2> $(RABBITMQ_MNESIA_DIR)/startup_err" &