Parcourir la source

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

JINMEI Tatuya il y a 12 ans
Parent
commit
b675d21e2e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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