diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-09-07 20:25:19 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-05-11 21:02:29 +1200 |
commit | cc8c64a8dc5c069204ce7334861997febc45a69f (patch) | |
tree | ebefd572813f16cf64030004b6063e73492f23e0 /config | |
parent | 10c21dfc1796bee8a0b34caa87c687390138bd64 (diff) | |
download | crosstool-ng-cc8c64a8dc5c069204ce7334861997febc45a69f.tar.gz crosstool-ng-cc8c64a8dc5c069204ce7334861997febc45a69f.tar.bz2 crosstool-ng-cc8c64a8dc5c069204ce7334861997febc45a69f.zip |
glibc: --enable-obsolete-rpc has been removed as of 2.32
Make --enable-obsolete-rpc conditional on !GLIBC_2_32_or_later as
it's been removed from that version on.
Fixes: #1505
Fixes: commit 1ee44ab5 ("glibc: --enable-obsolete-rpc has been removed as of 2.32")
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'config')
-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 e89ed8ce..5a3b1b8c 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -150,7 +150,7 @@ config GLIBC_NO_SPARC_V8 # The option and the code has finally been removed in 2.32 config GLIBC_HAS_OBSOLETE_RPC def_bool y - depends on GLIBC_2_14_or_later && !CT_GLIBC_2_32_or_later + depends on GLIBC_2_14_or_later && !GLIBC_2_32_or_later config GLIBC_EXTRA_CONFIG_ARRAY string |