From f98d4cb9e96f5d2e482a6001f93443c63da37b8a Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Wed, 30 Oct 2019 10:42:16 -0700 Subject: [PATCH] Add --libdir convenience flag to configure. The flag sets the library installation directory. --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index be22b4b477..e2670eed5d 100755 --- a/configure +++ b/configure @@ -34,6 +34,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]... [PREFIX/spool] --logdir=PATH when using ZeekControl, path to store log file [PREFIX/logs] + --libdir=PATH installation directory for library files [PREFIX/lib] --conf-files-dir=PATH config files installation directory [PREFIX/etc] --mandir=PATH installation path for man pages [PREFIX/share/man] @@ -192,6 +193,9 @@ while [ $# -ne 0 ]; do append_cache_entry ZEEK_ROOT_DIR PATH $optarg append_cache_entry PY_MOD_INSTALL_DIR PATH $optarg/lib/zeekctl ;; + --libdir=*) + append_cache_entry CMAKE_INSTALL_LIBDIR PATH $optarg + ;; --scriptdir=*) append_cache_entry ZEEK_SCRIPT_INSTALL_PATH STRING $optarg user_set_scriptdir="true"