mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-20 17:12:55 +00:00
Skip locale build on Cygwin
Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
7992f9b05f
commit
e7163a46c4
@ -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"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user