Give broker python bindings default install path within --prefix.

This commit is contained in:
Jon Siwek 2015-03-12 10:16:12 -05:00
parent 9bb00639ba
commit 0a31fd7a69
4 changed files with 13 additions and 2 deletions

View file

@ -1,4 +1,9 @@
2.3-533 | 2015-03-12 10:18:53 -0500
* Give broker python bindings default install path within --prefix.
(Jon Siwek)
2.3-530 | 2015-03-10 13:22:39 -0500 2.3-530 | 2015-03-10 13:22:39 -0500
* Fix broker data stores in absence of --enable-debug. (Jon Siwek) * Fix broker data stores in absence of --enable-debug. (Jon Siwek)

View file

@ -1 +1 @@
2.3-530 2.3-533

@ -1 +1 @@
Subproject commit 78b8d909fadc66dd20ef89bc62b52b4e7c4b6f5f Subproject commit 11fd5761a651d18d5ab80d7da545a1980c642e6d

6
configure vendored
View file

@ -149,6 +149,10 @@ while [ $# -ne 0 ]; do
append_cache_entry CMAKE_INSTALL_PREFIX PATH $optarg append_cache_entry CMAKE_INSTALL_PREFIX PATH $optarg
append_cache_entry BRO_ROOT_DIR PATH $optarg append_cache_entry BRO_ROOT_DIR PATH $optarg
append_cache_entry PY_MOD_INSTALL_DIR PATH $optarg/lib/broctl append_cache_entry PY_MOD_INSTALL_DIR PATH $optarg/lib/broctl
if [ -n "$user_enabled_broker" ]; then
append_cache_entry BROKER_PYTHON_HOME PATH $prefix
fi
;; ;;
--scriptdir=*) --scriptdir=*)
append_cache_entry BRO_SCRIPT_INSTALL_PATH STRING $optarg append_cache_entry BRO_SCRIPT_INSTALL_PATH STRING $optarg
@ -189,6 +193,8 @@ while [ $# -ne 0 ]; do
--enable-broker) --enable-broker)
append_cache_entry ENABLE_CXX11 BOOL true append_cache_entry ENABLE_CXX11 BOOL true
append_cache_entry ENABLE_BROKER BOOL true append_cache_entry ENABLE_BROKER BOOL true
append_cache_entry BROKER_PYTHON_HOME PATH $prefix
user_enabled_broker="true"
;; ;;
--disable-broccoli) --disable-broccoli)
append_cache_entry INSTALL_BROCCOLI BOOL false append_cache_entry INSTALL_BROCCOLI BOOL false