]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[340-make-perfdhcp-build-optional] typo
authorFrancis Dupont <fdupont@isc.org>
Mon, 4 Feb 2019 15:01:40 +0000 (16:01 +0100)
committerFrancis Dupont <fdupont@isc.org>
Tue, 5 Feb 2019 22:19:03 +0000 (17:19 -0500)
configure.ac

index 91a006b50b0ba971fcbf888c33c78201cf628e64..a986e8ba1d11a8d6fd087ae4d336e41cb3547b54 100644 (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