(svn r24220) -Change: Adopt ICU version detection to also deal with the new versioning scheme since ICU 49

This commit is contained in:
planetmaker 2012-05-09 19:13:34 +00:00
parent 5bfed864a0
commit 640ff642ae
1 changed files with 1 additions and 1 deletions

View File

@ -2864,7 +2864,7 @@ detect_icu() {
version=`$icu_config --version 2>/dev/null`
ret=$?
shortversion=`echo $version | cut -c 1,3`
shortversion=`echo $version | cut -d\. -f1,2 | sed "s/\.//g" | cut -c1-2`
log 2 "executing $icu_config --version"
log 2 " returned $version"
log 2 " exit code $ret"