BIND 10 trac1870, updated. 0d4a6b6be1e6ba8b3b5681b5c3be7c86d56c076f [1870] avoid using "no" keyword as a configured value for "bind10-include".
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Oct 3 21:13:23 UTC 2012
The branch, trac1870 has been updated
via 0d4a6b6be1e6ba8b3b5681b5c3be7c86d56c076f (commit)
from 686eb4e9edb4adee0cee357762fe9448fb0cb6bd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0d4a6b6be1e6ba8b3b5681b5c3be7c86d56c076f
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Wed Oct 3 14:12:39 2012 -0700
[1870] avoid using "no" keyword as a configured value for "bind10-include".
-----------------------------------------------------------------------
Summary of changes:
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 8bf1c35..63e028c 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
More information about the bind10-changes
mailing list