Add missing 'test' before iconv linux check.

Originally committed to SVN as r2172.
This commit is contained in:
Amar Takhar 2008-04-11 16:13:08 +00:00
parent b19daec0ae
commit a2d584c115
1 changed files with 1 additions and 1 deletions

View File

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