From 436fa197816996fefd5d8625e550190ee9917ae2 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 8 Sep 2009 15:42:14 +0000 Subject: [PATCH] (svn r17476) -Fix (r17475): Some icu-configs have the 'feature' of not adding a space where others do add the space --- config.lib | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.lib b/config.lib index 3cf59ba635..aab42f9f1d 100644 --- a/config.lib +++ b/config.lib @@ -1366,7 +1366,8 @@ make_cflags_and_ldflags() { CFLAGS="$CFLAGS -DWITH_ICU" CFLAGS="$CFLAGS `$icu_config --cppflags | tr '\n\r' ' '`" - LIBS="$LIBS `$icu_config --ldflags-searchpath --ldflags-libsonly | tr '\n\r' ' '`" + # Some icu-configs have the 'feature' of not adding a space where others do add the space + LIBS="$LIBS `$icu_config --ldflags-searchpath` `$icu_config --ldflags-libsonly | tr '\n\r' ' '`" fi