From a2d584c1151f446f170199d951d75295b422c354 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Fri, 11 Apr 2008 16:13:08 +0000 Subject: [PATCH] Add missing 'test' before iconv linux check. Originally committed to SVN as r2172. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index c93ef2bb3..9c959e4a2 100644 --- a/configure.in +++ b/configure.in @@ -248,7 +248,7 @@ AC_ARG_VAR([ICONV_CFLAGS], [CFLAGS to use for iconv (default: CPPFLAGS)]) AC_ARG_VAR([ICONV_LDFLAGS], [LDFLAGS to use for iconv (default: LDFLAGS -liconv)]) if test -z "$ICONV_LDFLAGS"; then - if "$build_linux" = "yes"; then + if test "$build_linux" = "yes"; then ICONV_LDFLAGS="$LDFLAGS" else ICONV_LDFLAGS="$LDFLAGS -liconv";