From efeac22bfa65c845c04adb5e70e6de33b0104fa3 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 9 Aug 2012 16:41:05 +0200 Subject: [PATCH] Fix linking against GNU libiconv Use quotation marks when assigning shell variable. This broke by 384496dd02cfd9a74b95d62ce0d23a31a7af3730, most likely by mistake. --- ChangeLog | 4 ++++ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 679cbd2..4660598 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-08-13 Miklos Szeredi + + * Fix linking against GNU libiconv. Patch by Natanael Copa + 2012-07-19 Miklos Szeredi * Released 2.9.1 diff --git a/configure.in b/configure.in index fd4b80f..85846f4 100644 --- a/configure.in +++ b/configure.in @@ -70,7 +70,7 @@ AC_ARG_WITH([libiconv-prefix], done ]) AM_ICONV -libfuse_libs=$libfuse_libs $LTLIBICONV +libfuse_libs="$libfuse_libs $LTLIBICONV" AM_CONDITIONAL(ICONV, test "$am_cv_func_iconv" = yes) AC_SUBST(libfuse_libs) -- 2.30.2