From 871b340ade9be434d5391550f750932af8670bb9 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Wed, 22 Jul 2015 10:56:40 -0500 Subject: [PATCH] Fix broker python bindings install location to track --prefix. --- CHANGES | 5 +++++ VERSION | 2 +- configure | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index b05242c31f..5fd012d64e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,9 @@ +2.4-46 | 2015-07-22 10:56:40 -0500 + + * Fix broker python bindings install location to track --prefix. + (Jon Siwek) + 2.4-45 | 2015-07-21 15:19:43 -0700 * Enabling Broker by default. This means CAF is now a required diff --git a/VERSION b/VERSION index a0a6bdf623..32dfa2f555 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4-45 +2.4-46 diff --git a/configure b/configure index 407a2e2dca..ae2f337117 100755 --- a/configure +++ b/configure @@ -161,7 +161,7 @@ while [ $# -ne 0 ]; do append_cache_entry BRO_ROOT_DIR PATH $optarg append_cache_entry PY_MOD_INSTALL_DIR PATH $optarg/lib/broctl - if [ -n "$user_disabled_broker" ]; then + if [ -z "$user_disabled_broker" ]; then append_cache_entry BROKER_PYTHON_HOME PATH $optarg fi ;;