diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-07 08:51:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-07 08:51:43 -0800 |
commit | bfcc1e112a796a262324270485e5b618f18e2b25 (patch) | |
tree | 4a0230fcd37b98812c96eaef08c0716a6655180f /scripts/build/libc/glibc.sh | |
parent | 456cccc0a7b4410088ac22b6473dfda94a83bc86 (diff) | |
parent | 2ef7d36efbfd7754a862d3840f0ea47ccec2f7df (diff) | |
download | crosstool-ng-bfcc1e112a796a262324270485e5b618f18e2b25.tar.gz crosstool-ng-bfcc1e112a796a262324270485e5b618f18e2b25.tar.bz2 crosstool-ng-bfcc1e112a796a262324270485e5b618f18e2b25.zip |
Merge pull request #635 from stilor/macos-skip-locales
Skip locales on macos
Diffstat (limited to 'scripts/build/libc/glibc.sh')
-rw-r--r-- | scripts/build/libc/glibc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index 52074579..569183aa 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -541,7 +541,7 @@ do_libc_locales() { # 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) + *-cygwin|*-darwin*) CT_DoLog EXTRA "Skipping GNU libc locales: incompatible build machine" return ;; |