(svn r17476) -Fix (r17475): Some icu-configs have the 'feature' of not adding a space where others do add the space

This commit is contained in:
rubidium 2009-09-08 15:42:14 +00:00
parent 458e7876d3
commit 436fa19781
1 changed files with 2 additions and 1 deletions

View File

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