You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
OOO_ARCH=$(uname -m) |
|
case $OOO_ARCH in |
|
x86_64 | s390x | ppc64 | sparc64 | aarch64 | ppc64le | mips64 | mips64el | riscv64) |
|
bits=64 |
|
;; |
|
* ) |
|
bits=32 |
|
;; |
|
esac |
|
exec icu-config-$bits "$@"
|
|
|