Module: wine Branch: master Commit: d3d344be78fe3add1e0eb625facad81adf192d54 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d3d344be78fe3add1e0eb625fa...
Author: Alexandre Julliard julliard@winehq.org Date: Tue May 8 17:52:57 2007 +0200
configure: Fixed typo in libicu check.
---
configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure index 1117a7b..4bfe022 100755 --- a/configure +++ b/configure @@ -10410,7 +10410,7 @@ cat >>confdefs.h <<_ACEOF #define HAVE_ICU 1 _ACEOF
- ICULIBS="icu_libs" + ICULIBS="$icu_libs"
{ echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } diff --git a/configure.ac b/configure.ac index e65f812..52323c7 100644 --- a/configure.ac +++ b/configure.ac @@ -603,7 +603,7 @@ then AC_TRY_RUN([#include <unicode/ubidi.h> main () { ubidi_open(); return 0; }], [AC_DEFINE(HAVE_ICU,1,[Define to 1 if the ICU libraries are installed]) - AC_SUBST(ICULIBS,"icu_libs") + AC_SUBST(ICULIBS,"$icu_libs") AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)]) LIBS="$saved_libs"