From: JINMEI Tatuya Date: Wed, 3 Oct 2012 21:12:39 +0000 (-0700) Subject: [1870] avoid using "no" keyword as a configured value for "bind10-include". X-Git-Tag: trac2402_base~15^2~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b675d21e2e7b1864b32824c97e180abf47c1f42e;p=thirdparty%2Fkea.git [1870] avoid using "no" keyword as a configured value for "bind10-include". --- diff --git a/examples/m4/ax_isc_bind10.m4 b/examples/m4/ax_isc_bind10.m4 index 8bf1c35c77..63e028c407 100644 --- a/examples/m4/ax_isc_bind10.m4 +++ b/examples/m4/ax_isc_bind10.m4 @@ -43,7 +43,7 @@ if test "$bind10_inc_path" = "no"; then done fi CPPFLAGS_SAVES="$CPPFLAGS" -if test "${bind10_inc_path}" ; then +if test "${bind10_inc_path}" != "no"; then BIND10_CPPFLAGS="-I${bind10_inc_path}" CPPFLAGS="$CPPFLAGS $BIND10_CPPFLAGS" fi