summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-09-08 15:42:14 +0000
committerrubidium <rubidium@openttd.org>2009-09-08 15:42:14 +0000
commit436fa197816996fefd5d8625e550190ee9917ae2 (patch)
tree379ba56cea9eba99c5c51dcbb2c689e936a218df /config.lib
parent458e7876d39e5151fc39b762743ae3dc725fd010 (diff)
downloadopenttd-436fa197816996fefd5d8625e550190ee9917ae2.tar.xz
(svn r17476) -Fix (r17475): Some icu-configs have the 'feature' of not adding a space where others do add the space
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.lib b/config.lib
index 3cf59ba63..aab42f9f1 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