From 7568a2967db75dedf8549f674992f186fce7723e Mon Sep 17 00:00:00 2001 From: JINMEI Tatuya Date: Sat, 20 Mar 2010 23:07:16 +0000 Subject: [PATCH] removed now-meaningless "auto" setting git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1619 e5f2f494-b856-4b98-b285-d166d9295462 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 474172b9b6..a58fc60810 100644 --- a/configure.ac +++ b/configure.ac @@ -165,8 +165,8 @@ AC_SUBST(BOOST_INCLUDES) AC_ARG_WITH([boost-lib], AC_HELP_STRING([--with-boost-lib=PATH], [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" fi AC_SUBST(BOOST_LDFLAGS)