Commit d3d344be authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Fixed typo in libicu check.

parent d0790f1b
...@@ -10410,7 +10410,7 @@ cat >>confdefs.h <<\_ACEOF ...@@ -10410,7 +10410,7 @@ cat >>confdefs.h <<\_ACEOF
#define HAVE_ICU 1 #define HAVE_ICU 1
_ACEOF _ACEOF
ICULIBS="icu_libs" ICULIBS="$icu_libs"
{ echo "$as_me:$LINENO: result: yes" >&5 { echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; } echo "${ECHO_T}yes" >&6; }
......
...@@ -603,7 +603,7 @@ then ...@@ -603,7 +603,7 @@ then
AC_TRY_RUN([#include <unicode/ubidi.h> AC_TRY_RUN([#include <unicode/ubidi.h>
main () { ubidi_open(); return 0; }], main () { ubidi_open(); return 0; }],
[AC_DEFINE(HAVE_ICU,1,[Define to 1 if the ICU libraries are installed]) [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(yes)],
[AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)]) [AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
LIBS="$saved_libs" LIBS="$saved_libs"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment