mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Merge remote-tracking branch 'origin/topic/timw/zeek-config-quoted-strings'
* origin/topic/timw/zeek-config-quoted-strings: Surround string assignments in zeek-config in quotes
This commit is contained in:
commit
87636947a6
3 changed files with 22 additions and 18 deletions
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
||||||
|
6.0.0-dev.491 | 2023-05-03 09:31:36 -0700
|
||||||
|
|
||||||
|
* Surround string assignments in zeek-config in quotes (Tim Wojtulewicz, Corelight)
|
||||||
|
|
||||||
6.0.0-dev.489 | 2023-05-03 09:31:19 -0700
|
6.0.0-dev.489 | 2023-05-03 09:31:19 -0700
|
||||||
|
|
||||||
* Remove parser error message for bro_init, et al (Tim Wojtulewicz, Corelight)
|
* Remove parser error message for bro_init, et al (Tim Wojtulewicz, Corelight)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
6.0.0-dev.489
|
6.0.0-dev.491
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
binpac_root=@ZEEK_CONFIG_BINPAC_ROOT_DIR@
|
binpac_root="@ZEEK_CONFIG_BINPAC_ROOT_DIR@"
|
||||||
broker_root=@ZEEK_CONFIG_BROKER_ROOT_DIR@
|
broker_root="@ZEEK_CONFIG_BROKER_ROOT_DIR@"
|
||||||
btest_tools_dir=@ZEEK_CONFIG_BTEST_TOOLS_DIR@
|
btest_tools_dir="@ZEEK_CONFIG_BTEST_TOOLS_DIR@"
|
||||||
build_type=@CMAKE_BUILD_TYPE_LOWER@
|
build_type="@CMAKE_BUILD_TYPE_LOWER@"
|
||||||
cmake_dir=@ZEEK_CMAKE_CONFIG_DIR@
|
cmake_dir="@ZEEK_CMAKE_CONFIG_DIR@"
|
||||||
config_dir=@ZEEK_ETC_INSTALL_DIR@
|
config_dir="@ZEEK_ETC_INSTALL_DIR@"
|
||||||
have_spicy=@USE_SPICY_ANALYZERS@
|
have_spicy="@USE_SPICY_ANALYZERS@"
|
||||||
include_dir=@CMAKE_INSTALL_PREFIX@/include
|
include_dir="@CMAKE_INSTALL_PREFIX@/include"
|
||||||
lib_dir=@CMAKE_INSTALL_FULL_LIBDIR@
|
lib_dir="@CMAKE_INSTALL_FULL_LIBDIR@"
|
||||||
plugin_dir=@ZEEK_PLUGIN_DIR@
|
plugin_dir="@ZEEK_PLUGIN_DIR@"
|
||||||
prefix=@CMAKE_INSTALL_PREFIX@
|
prefix="@CMAKE_INSTALL_PREFIX@"
|
||||||
python_dir=@PY_MOD_INSTALL_DIR@
|
python_dir="@PY_MOD_INSTALL_DIR@"
|
||||||
script_dir=@ZEEK_SCRIPT_INSTALL_PATH@
|
script_dir="@ZEEK_SCRIPT_INSTALL_PATH@"
|
||||||
site_dir=@ZEEK_SCRIPT_INSTALL_PATH@/site
|
site_dir="@ZEEK_SCRIPT_INSTALL_PATH@/site"
|
||||||
version=@VERSION@
|
version="@VERSION@"
|
||||||
zeek_dist=@ZEEK_DIST@
|
zeek_dist="@ZEEK_DIST@"
|
||||||
zeekpath=@DEFAULT_ZEEKPATH@
|
zeekpath="@DEFAULT_ZEEKPATH@"
|
||||||
|
|
||||||
add_path() {
|
add_path() {
|
||||||
# $1: existing path
|
# $1: existing path
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue