diff options
author | Slawek Figiel <slawek@isc.org> | 2023-06-28 19:22:48 +0200 |
---|---|---|
committer | Slawek Figiel <slawek@isc.org> | 2023-06-29 13:44:29 +0200 |
commit | 2eecf832472a74a6af269af3da8e870a52bca69d (patch) | |
tree | d53931fc9257ed2e21074cd7d02526d121a0472a /configure.ac | |
parent | [#2467] Remove unused code (diff) | |
download | kea-2eecf832472a74a6af269af3da8e870a52bca69d.tar.xz kea-2eecf832472a74a6af269af3da8e870a52bca69d.zip |
[#2467] Use an error rather than a warning
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index aa22ea0d31..23612e5ac4 100644 --- a/configure.ac +++ b/configure.ac @@ -1136,7 +1136,7 @@ AC_ARG_ENABLE(shell, if test "x$enable_shell" != "xno"; then major=`echo $PYTHON_VERSION | cut -d '.' -f 1` if test "x$major" != "x3"; then - AC_MSG_WARN("kea-shell does not support python2") + AC_MSG_ERROR([kea-shell does not support python2]) fi fi |