mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-06-16 14:28:11 +00:00
Skip locale build on Cygwin
Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
@ -526,6 +526,15 @@ do_libc_locales() {
|
|||||||
local -a extra_config
|
local -a extra_config
|
||||||
local glibc_cflags
|
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"
|
mkdir -p "${CT_BUILD_DIR}/build-localedef"
|
||||||
cd "${CT_BUILD_DIR}/build-localedef"
|
cd "${CT_BUILD_DIR}/build-localedef"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user