Skip to content
Snippets Groups Projects
Commit 46997ba1 authored by Tim McMullan's avatar Tim McMullan Committed by Brian Christiansen
Browse files

Remove redundant message when libdbus is found during configure.

Bug 14100
parent 104e022f
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@ documents those changes that are of interest to users and administrators.
-- Dynamic node fixes and updates.
-- Added error logging when a node goes into an invalid state so that the user
can still see the reason even if the user set a custom reason beforehand.
-- Remove redundant message when libdbus is found during configure.
 
* Changes in Slurm 22.05.0rc1
=============================
......
......@@ -88,7 +88,6 @@ AC_DEFUN([X_AC_DBUS],
PKG_CHECK_MODULES([dbus], [dbus-1],
[x_ac_have_dbus="yes"],
[x_ac_have_dbus="no"])
AC_MSG_RESULT([$x_ac_have_dbus, ${x_ac_dbus_pkg_name} was found.])
AM_CONDITIONAL(WITH_DBUS, test "x$x_ac_have_dbus" = "xyes")
if test "x$x_ac_have_dbus" = "xno"; then
AC_MSG_WARN([unable to link against dbus-1 libraries required for cgroup/v2])
......
......@@ -24663,8 +24663,6 @@ else
printf "%s\n" "yes" >&6; }
x_ac_have_dbus="yes"
fi
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $x_ac_have_dbus, ${x_ac_dbus_pkg_name} was found." >&5
printf "%s\n" "$x_ac_have_dbus, ${x_ac_dbus_pkg_name} was found." >&6; }
if test "x$x_ac_have_dbus" = "xyes"; then
WITH_DBUS_TRUE=
WITH_DBUS_FALSE='#'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment