Skip locale build on Cygwin

Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
Alexey Neyman 2017-02-27 22:05:31 -08:00
parent 7992f9b05f
commit e7163a46c4

View File

@ -526,6 +526,15 @@ do_libc_locales() {
local -a extra_config
local glibc_cflags
# To build locales, we'd need to build glibc for the build machine.
# Bail out if the host is not supported.
case "${CT_BUILD}" in
*-cygwin)
CT_DoLog EXTRA "Skipping GNU libc locales: incompatible build machine"
return
;;
esac
mkdir -p "${CT_BUILD_DIR}/build-localedef"
cd "${CT_BUILD_DIR}/build-localedef"