From 0d7d4824b2edc7aeeb995077655a9a89b5c360a9 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 3 Aug 2011 17:39:24 -0400 Subject: [PATCH] Minor --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index dcc68d0f..a365d7cd 100644 --- a/configure.ac +++ b/configure.ac @@ -107,11 +107,11 @@ PKG_CHECK_MODULES(ICU, icu, have_icu=true, [ if test $cross_compiling == no; then AC_CHECK_PROG([have_icu], [icu-config], [true], [false]) if $have_icu; then - icu_cflags=`icu-config --cppflags` - icu_libs=`icu-config --ldflags-libsonly` - icu_cflags=`echo "$icu_cflags" | sed "s@ -I/usr/include @ @"` - AC_SUBST(ICU_CFLAGS, [$icu_cflags]) - AC_SUBST(ICU_LIBS, [$icu_libs]) + ICU_CFLAGS=`icu-config --cppflags` + ICU_LIBS=`icu-config --ldflags-libsonly` + ICU_CFLAGS=`echo "$ICU_CFLAGS" | sed "s@ -I/usr/include @ @"` + AC_SUBST(ICU_CFLAGS) + AC_SUBST(ICU_LIBS) fi fi ]) -- GitLab