mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Surround string assignments in zeek-config in quotes
This commit is contained in:
parent
c02940e4f3
commit
86839aee34
1 changed files with 17 additions and 17 deletions
|
@ -1,22 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
binpac_root=@ZEEK_CONFIG_BINPAC_ROOT_DIR@
|
||||
broker_root=@ZEEK_CONFIG_BROKER_ROOT_DIR@
|
||||
btest_tools_dir=@ZEEK_CONFIG_BTEST_TOOLS_DIR@
|
||||
build_type=@CMAKE_BUILD_TYPE_LOWER@
|
||||
cmake_dir=@ZEEK_CMAKE_CONFIG_DIR@
|
||||
config_dir=@ZEEK_ETC_INSTALL_DIR@
|
||||
have_spicy=@USE_SPICY_ANALYZERS@
|
||||
include_dir=@CMAKE_INSTALL_PREFIX@/include
|
||||
lib_dir=@CMAKE_INSTALL_FULL_LIBDIR@
|
||||
plugin_dir=@ZEEK_PLUGIN_DIR@
|
||||
prefix=@CMAKE_INSTALL_PREFIX@
|
||||
python_dir=@PY_MOD_INSTALL_DIR@
|
||||
script_dir=@ZEEK_SCRIPT_INSTALL_PATH@
|
||||
site_dir=@ZEEK_SCRIPT_INSTALL_PATH@/site
|
||||
version=@VERSION@
|
||||
zeek_dist=@ZEEK_DIST@
|
||||
zeekpath=@DEFAULT_ZEEKPATH@
|
||||
binpac_root="@ZEEK_CONFIG_BINPAC_ROOT_DIR@"
|
||||
broker_root="@ZEEK_CONFIG_BROKER_ROOT_DIR@"
|
||||
btest_tools_dir="@ZEEK_CONFIG_BTEST_TOOLS_DIR@"
|
||||
build_type="@CMAKE_BUILD_TYPE_LOWER@"
|
||||
cmake_dir="@ZEEK_CMAKE_CONFIG_DIR@"
|
||||
config_dir="@ZEEK_ETC_INSTALL_DIR@"
|
||||
have_spicy="@USE_SPICY_ANALYZERS@"
|
||||
include_dir="@CMAKE_INSTALL_PREFIX@/include"
|
||||
lib_dir="@CMAKE_INSTALL_FULL_LIBDIR@"
|
||||
plugin_dir="@ZEEK_PLUGIN_DIR@"
|
||||
prefix="@CMAKE_INSTALL_PREFIX@"
|
||||
python_dir="@PY_MOD_INSTALL_DIR@"
|
||||
script_dir="@ZEEK_SCRIPT_INSTALL_PATH@"
|
||||
site_dir="@ZEEK_SCRIPT_INSTALL_PATH@/site"
|
||||
version="@VERSION@"
|
||||
zeek_dist="@ZEEK_DIST@"
|
||||
zeekpath="@DEFAULT_ZEEKPATH@"
|
||||
|
||||
add_path() {
|
||||
# $1: existing path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue