From: Marcel Holtmann Date: Sat, 28 Feb 2009 01:41:00 +0000 (+0100) Subject: Fix DHCLIENT and RESOLVCONF variable name typos X-Git-Tag: 0.11~1 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=51d57d448cf6f5b9fadfb15a6403a612e3b23234;p=connman Fix DHCLIENT and RESOLVCONF variable name typos --- diff --git a/configure.ac b/configure.ac index eeaa3d7..91c3685 100644 --- a/configure.ac +++ b/configure.ac @@ -92,7 +92,7 @@ if (test "${enable_dhclient}" = "yes"); then if (test -z "${path_dhclient}"); then AC_PATH_PROG(DHCLIENT, [dhclient], [], $PATH:/sbin:/usr/sbin) else - UDHCPC="${path_dhclient}" + DHCLIENT="${path_dhclient}" AC_SUBST(DHCLIENT) fi fi @@ -107,7 +107,7 @@ if (test "${enable_resolvconf}" = "yes"); then if (test -z "${path_resolvconf}"); then AC_PATH_PROG(RESOLVCONF, [resolvconf], [], $PATH:/sbin:/usr/sbin) else - UDHCPC="${path_resolvconf}" + RESOLVCONF="${path_resolvconf}" AC_SUBST(RESOLVCONF) fi fi