2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 04:57:52 +00:00

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

This commit is contained in:
JINMEI Tatuya 2012-10-03 14:12:39 -07:00
parent 686eb4e9ed
commit 0d4a6b6be1

View File

@ -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