From e1aa76de16ead3eb7dcc24e994c7246829b6d09e Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 1 Jun 2020 12:47:38 -0600 Subject: [PATCH] Use Solaris audit for Solaris 11, not BSM audit. BSM audit is no longer supported in Solaris 11.4. --- scripts/mkpkg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/mkpkg b/scripts/mkpkg index bb44a95ea..9a4e61c86 100755 --- a/scripts/mkpkg +++ b/scripts/mkpkg @@ -412,9 +412,11 @@ case "$osversion" in configure_opts="${configure_opts}${configure_opts+$tab}--with-project" if [ $osrelease -ge 11 ]; then - configure_opts="${configure_opts}${configure_opts+$tab}--with-bsm-audit" + configure_opts="${configure_opts}${configure_opts+$tab}--with-solaris-audit" # Encrypted remote I/O log support. with_openssl=true + elif [ $osrelease -ge 10 ]; then + configure_opts="${configure_opts}${configure_opts+$tab}--with-bsm-audit" fi ;; *)