diff options
author | Chris Packham <judge.packham@gmail.com> | 2019-09-04 20:25:02 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2019-09-04 20:28:33 +1200 |
commit | af2f3ac9c5454cb89d081405468ee5df58994ab4 (patch) | |
tree | babb7c90caded4b46f8c9055ec59528fe7b5d7b5 /config/libc | |
parent | afaf7b9a25b5d77991002936be5c47fc5ff549de (diff) | |
download | crosstool-ng-af2f3ac9c5454cb89d081405468ee5df58994ab4.tar.gz crosstool-ng-af2f3ac9c5454cb89d081405468ee5df58994ab4.tar.bz2 crosstool-ng-af2f3ac9c5454cb89d081405468ee5df58994ab4.zip |
libc: glibc 2.28 needs make 4.0
Fixes: #1210
Per the release notes for the GNU C library 2.28[1] make 4.0 or newer is
required. Previously the logic was applied to glibc 2.29 or newer.
[1] - https://www.sourceware.org/ml/libc-alpha/2018-08/msg00003.html
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/glibc.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 4138707f..e8611d69 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -57,7 +57,7 @@ config GLIBC_DEP_PYTHON config GLIBC_DEP_MAKE_4_0 def_bool y - depends on GLIBC_2_29_or_later && !CONFIGURE_has_make_4_0_or_newer + depends on GLIBC_2_28_or_later && !CONFIGURE_has_make_4_0_or_newer select COMP_TOOLS_MAKE select MAKE_REQUIRE_4_0_or_later select MAKE_GNUMAKE_SYMLINK # Override old host make in .build/tools/bin |