From a3b7c91ba4bc7e23fa8639828fd33b9c9af91908 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Wed, 10 Aug 2016 10:21:55 -0700 Subject: [PATCH] Fix configure warning when compiling with --enable-broker We do no longer need to define BROKER_PYTHON_HOME, because as of 5bae0ee6f202038ad6ed74c1c2fdf1c07c81, broker uses PY_MOD_INSTALL_DIR as the install location, which is already set. Please note that this means that now the broker python bindings will be installed to /lib/broctl instead of /lib/python. Addresses BIT-1667 --- configure | 6 ------ 1 file changed, 6 deletions(-) diff --git a/configure b/configure index 95129d8cc0..b58dd84c6a 100755 --- a/configure +++ b/configure @@ -161,10 +161,6 @@ while [ $# -ne 0 ]; do append_cache_entry CMAKE_INSTALL_PREFIX PATH $optarg append_cache_entry BRO_ROOT_DIR PATH $optarg append_cache_entry PY_MOD_INSTALL_DIR PATH $optarg/lib/broctl - - if [ -n "$user_enabled_broker" ]; then - append_cache_entry BROKER_PYTHON_HOME PATH $optarg - fi ;; --scriptdir=*) append_cache_entry BRO_SCRIPT_INSTALL_PATH STRING $optarg @@ -201,8 +197,6 @@ while [ $# -ne 0 ]; do ;; --enable-broker) append_cache_entry ENABLE_BROKER BOOL true - append_cache_entry BROKER_PYTHON_HOME PATH $prefix - user_enabled_broker="true" ;; --disable-broker) ;;