summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorAlvaro Videla <videlalvaro@gmail.com>2015-04-15 01:16:19 +0200
committerMichael Klishin <mklishin@pivotal.io>2015-04-15 17:26:44 +0300
commit50597aa117bf2017fa4a66b2de67feda3f5d7c41 (patch)
treedcc872d6e53e12fea99a53a9067dd4f5e7f4a5db /packaging
parentde49752892174188480d9029b24b7307157e4d53 (diff)
downloadrabbitmq-server-git-50597aa117bf2017fa4a66b2de67feda3f5d7c41.tar.gz
adds start.boot to bin folder for mac-standalone release
This file is required by rabbit_nodes:ensure_epmd/0 in order to be able to programatically start epmd Fixes rabbitmq/rabbitmq-server#96
Diffstat (limited to 'packaging')
-rw-r--r--packaging/standalone/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/packaging/standalone/Makefile b/packaging/standalone/Makefile
index 7a4135f964..903458836c 100644
--- a/packaging/standalone/Makefile
+++ b/packaging/standalone/Makefile
@@ -53,6 +53,11 @@ dist:
mkdir -p $(RLS_DIR)/releases/$(OTP_RELEASE)
cp $(ERTS_ROOT_DIR)/releases/$(OTP_RELEASE)/OTP_VERSION $(RLS_DIR)/releases/$(OTP_RELEASE)/OTP_VERSION
+# copy start.boot to bin folder as Erlang does.
+# Required by rabbit_nodes:ensure_epmd/0
+ mkdir -p $(RLS_DIR)/bin/
+ cp $(ERTS_ROOT_DIR)/bin/start.boot $(RLS_DIR)/bin/
+
# move rabbitmq files to top level folder
mv $(RLS_DIR)/lib/rabbit-$(VERSION)/* $(RLS_DIR)