changeset 12982:7ac68208b4b6 draft

(svn r17476) -Fix (r17475): Some icu-configs have the 'feature' of not adding a space where others do add the space
author rubidium <rubidium@openttd.org>
date Tue, 08 Sep 2009 15:42:14 +0000
parents bee7b7b5b53e
children 196518b4450d
files config.lib
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/config.lib
+++ b/config.lib
@@ -1366,7 +1366,8 @@
 		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