From 0d4a6b6be1e6ba8b3b5681b5c3be7c86d56c076f Mon Sep 17 00:00:00 2001 From: JINMEI Tatuya Date: Wed, 3 Oct 2012 14:12:39 -0700 Subject: [PATCH] [1870] avoid using "no" keyword as a configured value for "bind10-include". --- examples/m4/ax_isc_bind10.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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