# HG changeset patch # User rubidium # Date 2009-09-08 15:42:14 # Node ID 0774c5ebd511334269f60dc481ca6b1178a9dd73 # Parent 04ef0aecf9d10cdb51a9297f42a8105ca8883022 (svn r17476) -Fix (r17475): Some icu-configs have the 'feature' of not adding a space where others do add the space diff --git a/config.lib b/config.lib --- 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