minor - fix configure output of eBPF (#12471)
Timotej S committed
Mar 21, 2022 at 16:41 UTC
e5c6a0b30ca3d0bacbb6f3d062a813e740966df2
1 file changed
+1
-1
configure.ac
+1
-1
@@ -1214,7 +1214,6 @@ if test "${build_target}" = "linux" -a "${enable_ebpf}" != "no"; then
1214
[have_libbpf=no]
1215
)
1216
1217
- AC_MSG_CHECKING([if ebpf.plugin should be enabled])
1217
if test "${have_libelf}" = "yes" -a \
1218
"${have_bpf}" = "yes" -a \
1219
"${have_libbpf}" = "yes"; then
@@ -1228,6 +1227,7 @@ if test "${build_target}" = "linux" -a "${enable_ebpf}" != "no"; then
1227
else
1228
enable_ebpf="no"
1229
fi
1230
+AC_MSG_CHECKING([if ebpf.plugin should be enabled])
1231
AC_MSG_RESULT([${enable_ebpf}])
1232
AM_CONDITIONAL([ENABLE_PLUGIN_EBPF], [test "${enable_ebpf}" = "yes"])
1233