Browse Source

[1870] avoid using "no" keyword as a configured value for "bind10-include".

JINMEI Tatuya 12 years ago
parent
commit
b675d21e2e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/m4/ax_isc_bind10.m4

+ 1 - 1
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