mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

- Fixing the parts of the `make restdoc` and `make doc` process that were broken by the last Bro script re-organization - Generated documentation for Bro scripts derived from BiFs now use the original BiF source file as the "original source file" link - Renaming of the internal POLICYDEST definition and other misc places that refer to "policy" scripts; that terminology doesn't make total sense now - Added a documentation blacklist reminder test that will fail if there's scripts that are blacklisted from being documentated because they're still in progress - Some minor Bro script changes to fix small @load dependency errors Addresses #543
19 lines
675 B
Bash
Executable file
19 lines
675 B
Bash
Executable file
#!/bin/sh
|
|
# After configured by CMake, this file prints the absolute path to Bro scripts
|
|
# that come with the source distributions of Bro as well as scripts that are
|
|
# generated by the BIF compiler at compile time.
|
|
#
|
|
# The intended use of this script is to make it easier to run Bro from
|
|
# the build directory, avoiding the need to install it. This could be
|
|
# done like:
|
|
#
|
|
# BROPATH=`./bro-path-dev` ./src/bro
|
|
#
|
|
|
|
broPolicies=${BRO_SCRIPT_SOURCE_PATH}:${BRO_SCRIPT_SOURCE_PATH}/policy:${BRO_SCRIPT_SOURCE_PATH}/site
|
|
|
|
broGenPolicies=${CMAKE_BINARY_DIR}/src
|
|
|
|
installedPolicies=${BRO_SCRIPT_INSTALL_PATH}:${BRO_SCRIPT_INSTALL_PATH}/site
|
|
|
|
echo .:$broPolicies:$broGenPolicies
|