summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update rabbitmq-components.mkJean-Sébastien Pédron2015-10-301-1/+9
|
* scripts: Pass script name to rabbitmq-env.batJean-Sébastien Pédron2015-10-305-5/+5
|
* rabbitmq-env.bat: Adapt to erlang.mkJean-Sébastien Pédron2015-10-301-1/+66
|
* rabbitmq-env.bat: Use backslashes in pathsJean-Sébastien Pédron2015-10-301-2/+2
|
* rabbitmq-env.bat: Automatically set ERLANG_HOME if "erl" is in the PATHJean-Sébastien Pédron2015-10-301-0/+12
|
* rabbitmq-env.bat: Take the caller script name as first argumentJean-Sébastien Pédron2015-10-301-0/+1
|
* rabbitmq-defaults.bat: Detect development env on WindowsJean-Sébastien Pédron2015-10-301-0/+6
|
* Git: Ignore editors' backup filesJean-Sébastien Pédron2015-10-301-0/+1
|
* rabbitmq-env: Ensure RABBITMQ_HOME is an absolute pathJean-Sébastien Pédron2015-10-301-13/+13
| | | | | This helps rabbitmq-plugins when it queries rabbitmqctl to get the various plugins path variables.
* rabbitmq-plugins: Don't query rabbitmqctl if env vars are explicitly setJean-Sébastien Pédron2015-10-301-3/+9
| | | | | | | | | | | | | | | So if RABBITMQ_PLUGINS_DIR is explicitely set in the environment, do not run rabbitmqctl. Likewise for RABBITMQ_ENABLED_PLUGINS_FILE. This prevents rabbitmq-plugins from taking configuration from a running unrelated node, when it is started from `make run-broker`. The make command will still fail later but for the correct reason: there is already a node conflicting with the one we want to start. Without this, `make run-broker` would abort with the following error: Error: {cannot_write_enabled_plugins_file, "./sbin/../etc/rabbitmq/enabled_plugins",enoent} ... which doesn't make any sense.
* packaging/standalone: Use "cp", not "cp -a"Jean-Sébastien Pédron2015-10-291-1/+1
| | | | | | | | | | For the same reasons as: commit a131baadf409db533c24dfd87d3a141136bcc37c Author: Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> Date: Thu Oct 29 09:56:21 2015 +0100 Makefile: Use "cp -r", not "cp -a"
* packaging: Do not pass $(ERL_LIBS) to sub-makeJean-Sébastien Pédron2015-10-296-0/+6
|
* packaging/standalone: Use "xzcat | tar" instead of "tar -J"Jean-Sébastien Pédron2015-10-291-1/+1
| | | | | The -J flag is not supported by old versions of GNU tar. This is the case on Mac OS X 10.5.x for instance.
* make package-standalone-macosx: Only valid on Mac OS XJean-Sébastien Pédron2015-10-291-6/+9
| | | | | On other platform, there is no point in creating this package because it embeds a native Erlang.
* Makefile: Use "cp -r", not "cp -a"Jean-Sébastien Pédron2015-10-291-8/+8
| | | | | "cp -a" is not portable and in fact, we don't need to preserve timestamps or owner. Permissions are preserved anyway.
* make source-dist: Mention we should fix file timestampsJean-Sébastien Pédron2015-10-291-0/+3
| | | | | | Add an example with the comment. This is on the TODO to have reproducible builds.
* packaging: Do not pass $(DEPS_DIR) to sub-makeJean-Sébastien Pédron2015-10-285-0/+10
|
* make source-dist: Replace version in rabbit.app.src as wellJean-Sébastien Pédron2015-10-281-0/+4
|
* make source-dist: Use $(PROJECT) instead of hardcoding `rabbit`Jean-Sébastien Pédron2015-10-281-2/+2
|
* packaging/standalone: Test if `generate_release` succeededJean-Sébastien Pédron2015-10-281-0/+1
|
* packaging/standalone: Sort files in final archiveJean-Sébastien Pédron2015-10-281-2/+4
| | | | | While here, switch from gzip to xz as the compression format. This saves around 16% of file size.
* packaging/standalone: Remove patch(1) backup if anyJean-Sébastien Pédron2015-10-281-0/+1
|
* packaging/standalone: Use $(abspath) instead of `pwd`Jean-Sébastien Pédron2015-10-281-2/+2
|
* packaging/standalone: Remove existing build directoriesJean-Sébastien Pédron2015-10-281-0/+1
|
* packaging/standalone: Do not pass $(DEPS_DIR) to sub-makeJean-Sébastien Pédron2015-10-281-0/+2
|
* packaging/standalone: Fix path to default $(SOURCE_DIST_FILE)Jean-Sébastien Pédron2015-10-281-1/+1
|
* packaging/standalone: Ensure plugin deps are listed once in the rel scriptJean-Sébastien Pédron2015-10-281-1/+3
| | | | | | | | Otherwise, systools complains with eg: Duplicated register names: ssl_sup registered in ssl and ssl ssl_manager registered in ssl and ssl ...
* make source-dist: "find -s" is not portable, use sort(1)Jean-Sébastien Pédron2015-10-281-4/+4
| | | | | | | | | sort(1) supports the option -z to work with NUL-terminated strings, so we can keep "find -print0" and "xargs -0" and support filenames with whitespaces. As a reminder, LC_COLLATE=C is used to ensure the order is the same for everybody (ie. independent of the user's locale).
* Update erlang.mkJean-Sébastien Pédron2015-10-281-5/+125
|
* Update rabbitmq-components.mkJean-Sébastien Pédron2015-10-281-3/+1
|
* make source-dist: Sort files in the source archiveJean-Sébastien Pédron2015-10-271-4/+11
| | | | This is one step toward reproducable builds.
* Makefile: USE_PROPER_QC is now a simply expanded variableJean-Sébastien Pédron2015-10-271-2/+2
| | | | | | | | This shaves off 50% of the build time because the shell command is evaluated only once. Do the same for ERTS_VER, though it doesn't bring a significant speed improvement.
* Makefile: Move .DEFAULT_GOAL to the same place as other MakefilesJean-Sébastien Pédron2015-10-271-2/+1
|
* cosmeticsAlvaro Videla2015-10-272-21/+21
|
* Merge pull request #390 from rabbitmq/rabbitmq-server-369Alvaro Videla2015-10-272-7/+7
|\ | | | | Rename policy parameters, references #369
| * Rename policy parameters, references #369Michael Klishin2015-10-262-7/+7
| |
* | make source-dist: Only force plugins' version when it's emptyJean-Sébastien Pédron2015-10-271-1/+1
| |
* | make source-dist: Fix licenses handling to match previous behaviorJean-Sébastien Pédron2015-10-271-2/+5
| |
* | make source-dist: Do not distribute some subdirectoriesJean-Sébastien Pédron2015-10-271-0/+4
| | | | | | | | | | For now, skip cowboy's documentation and examples, and rabbitmq-mqtt test client (which is downloaded during the test).
* | make source-dist: Do not distribute rabbitmq-metronome and -tokeJean-Sébastien Pédron2015-10-271-0/+2
| |
* | Merge branch 'stable'Michael Klishin2015-10-271-4/+4
|\ \
| * \ Merge pull request #394 from aboroska/rabbitmq-server-117-fix-function-nameMichael Klishin2015-10-271-4/+4
| |\ \ | | | | | | | | Fix spelling of function name
| | * | Fix spelling of function nameAndras Boroska2015-10-261-4/+4
| |/ /
* | | Merge branch 'stable'Michael Klishin2015-10-271-4/+14
|\ \ \ | |/ /
| * | Merge pull request #391 from rabbitmq/rabbitmq-server-117Michael Klishin2015-10-271-4/+14
| |\ \ | | | | | | | | Check port using ipv6
| | * | Check port using ipv6Diana Corbacho2015-10-261-4/+14
| |/ /
* | | Update erlang.mkJean-Sébastien Pédron2015-10-261-2/+2
| | |
* | | Merge branch 'rabbitmq-server-386'Jean-Sébastien Pédron2015-10-261-1/+1
|\ \ \
| * | | Disable FHC read cache by defaultMichael Klishin2015-10-231-1/+1
| | |/ | |/| | | | Fixes #386.
* | | make source-dist: Do not distribute plugins/ directoriesJean-Sébastien Pédron2015-10-261-1/+4
| | | | | | | | | | | | Those are artefacts of unrelated builds.