From 399003d49222d5851236996c454a3fa5e295e748 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 21 Dec 2004 21:47:51 +0000 Subject: [PATCH] 2004-12-21 Colin Walters * configure.in: Correct named detection. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@353 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 4 ++++ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f0b7396a4e..0d5fc313e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-12-21 Colin Walters + + * configure.in: Correct named detection. + 2004-12-21 Colin Walters * src/NetworkManager.c (nm_data_new): Initialize named. diff --git a/configure.in b/configure.in index 9055774de3..cdfd4c1e22 100644 --- a/configure.in +++ b/configure.in @@ -152,7 +152,7 @@ AC_DEFINE_UNQUOTED(DBUS_SYSTEMD_DIR, "$DBUS_SYS_DIR", [Where system.d dir for DB AC_ARG_WITH(named, AC_HELP_STRING([--with-named=], [path to the named binary])) if test "x${with_named}" = x; then AC_PATH_PROG(with_named, [named], no) - if test "x${with_named}" = x; then + if test "x${with_named}" = xno; then AC_MSG_ERROR([must specify path to named binary with --with-named]) fi fi