2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[340-make-perfdhcp-build-optional] typo

This commit is contained in:
Francis Dupont
2019-02-04 16:01:40 +01:00
parent 8ee2c24be1
commit 6ed6d024ca

View File

@@ -441,14 +441,14 @@ AC_ARG_ENABLE(perfdhcp, [AC_HELP_STRING([--enable-perfdhcp],
[enable perfdhcp, a DHCP benchmarking tool [defaulno]])],
enable_perfdhcp=$enableval, enable_perfdhcp=no)
DISTCHECK_KEA_PERFDHCP_CONFIGURE_FLAG=
DISTCHECK_PERFDHCP_CONFIGURE_FLAG=
if test "x$enable_perfdhcp" != xno ; then
DISTCHECK_KEA_PERFDHCP_CONFIGURE_FLAG="--enable-perfdhcp"
DISTCHECK_PERFDHCP_CONFIGURE_FLAG="--enable-perfdhcp"
fi
# Export to makefiles the info whether we have perfdhcp enabled or not
AM_CONDITIONAL(PERFDHCP, test x$enable_perfdhcp != xno)
AC_SUBST(DISTCHECK_KEA_PERFDHCP_CONFIGURE_FLAG)
AC_SUBST(DISTCHECK_PERFDHCP_CONFIGURE_FLAG)
# Kea-shell is written in python. It can work with python 2.7 or any 3.x.
# It may likely work with earlier versions, but 2.7 was the oldest one we tested