Browse Source

removed now-meaningless "auto" setting

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1619 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
7568a2967d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      configure.ac

+ 2 - 2
configure.ac

@@ -165,8 +165,8 @@ AC_SUBST(BOOST_INCLUDES)
 AC_ARG_WITH([boost-lib],
 AC_ARG_WITH([boost-lib],
 AC_HELP_STRING([--with-boost-lib=PATH],
 AC_HELP_STRING([--with-boost-lib=PATH],
   [specify exact directory for Boost libraries]),
   [specify exact directory for Boost libraries]),
-  [boostlib_path="$withval"], [boostlib_path="auto"])
-if test "$boostlib_path" != "no"; then
+  [boostlib_path="$withval"])
+if test "X$boostlib_path" != "X"; then
 	BOOST_LDFLAGS="-L$boostlib_path"
 	BOOST_LDFLAGS="-L$boostlib_path"
 fi
 fi
 AC_SUBST(BOOST_LDFLAGS)
 AC_SUBST(BOOST_LDFLAGS)