From ae0754c1e1f4850d50899eebd3293c9eccf2a124 Mon Sep 17 00:00:00 2001 From: Robert Love Date: Thu, 30 Jun 2005 14:34:17 +0000 Subject: [PATCH] 2005-06-30 Robert Love * configure.in: look in "/usr/sbin" for dhcdbd, too. (it shouldn't be in /sbin unless D-BUS is, folks). git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@767 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 2 ++ configure.in | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2f6f6b5b76..ac26cbaec8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ * src/NetworkManagerDevice.c: g_malloc0 cannot fail. * src/nm-dbus-nm.c: print when we sleep and wake up. * gnome/applet/menu-items.c: whitespace, misc. cleanup. + * configure.in: look in "/usr/sbin" for dhcdbd, too. (it shouldn't be + in /sbin unless D-BUS is, folks). 2005-06-27 Robert Love diff --git a/configure.in b/configure.in index f6491b8423..ab5ea2e3d9 100644 --- a/configure.in +++ b/configure.in @@ -197,7 +197,7 @@ AC_DEFINE_UNQUOTED(NM_NAMED_BINARY_PATH, "$with_named", [Define to path of named AC_DEFINE_UNQUOTED(NM_NAMED_DATA_DIR, "$with_named_dir", [Define to path of named data directory]) AC_DEFINE_UNQUOTED(NM_NAMED_USER, "$with_named_user", [Define to named username]) -AC_PATH_PROG(DHCDBD_BINARY_PATH, dhcdbd, [], $PATH:/sbin) +AC_PATH_PROG(DHCDBD_BINARY_PATH, dhcdbd, [], $PATH:/sbin:/usr/sbin) if ! test -x "$DHCDBD_BINARY_PATH"; then AC_MSG_ERROR(dhcdbd was not installed. See http://people.redhat.com/jvdias/dhcdbd) fi