diff options
author | athenian200 <athenian200@outlook.com> | 2019-10-17 19:55:19 -0500 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2019-10-21 04:53:44 -0500 |
commit | e4f90cbb56b3cdcde52396b1aaa476cc8c5f07e5 (patch) | |
tree | d3ef9c8941aafdfe5b86cdd9f062b80d9d59c4ea | |
parent | 21146d0d5e4b6c985a3dce26460a5f495f1deb6e (diff) | |
download | uxp-e4f90cbb56b3cdcde52396b1aaa476cc8c5f07e5.tar.gz |
MoonchildProductions#1251 - Part 26: Oracle Solaris gsed/ICU fix.
OpenIndiana didn't need this for some reason, but on Oracle Solaris, we need this to make sure we're using gsed (GNU sed) here. It's probably a safer bet anyway.
-rw-r--r-- | build/autoconf/icu.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/autoconf/icu.m4 b/build/autoconf/icu.m4 index 89c53c52c3..d3cc3113de 100644 --- a/build/autoconf/icu.m4 +++ b/build/autoconf/icu.m4 @@ -35,7 +35,7 @@ if test -n "$USE_ICU"; then fi fi - version=`sed -n 's/^[[[:space:]]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p' "$icudir/common/unicode/uvernum.h"` + version=`${TOOLCHAIN_PREFIX}sed -n 's/^[[[:space:]]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p' "$icudir/common/unicode/uvernum.h"` if test x"$version" = x; then AC_MSG_ERROR([cannot determine icu version number from uvernum.h header file $lineno]) fi |