diff options
author | 2022-02-22 12:29:03 -0500 | |
---|---|---|
committer | 2022-02-22 12:29:03 -0500 | |
commit | 00f2388f06a9681e4050be48aa7caa1bd1c1b861 (patch) | |
tree | ccc3e4884466c334af10078e127d09d08b2c772a /profiles/default/linux/make.defaults | |
parent | dev-libs/expat: Drop vulnerable (diff) | |
download | gentoo-00f2388f06a9681e4050be48aa7caa1bd1c1b861.tar.gz gentoo-00f2388f06a9681e4050be48aa7caa1bd1c1b861.tar.bz2 gentoo-00f2388f06a9681e4050be48aa7caa1bd1c1b861.zip |
profiles/default/linux: set enable_year2038="no"
This bypasses the 64-bit time_t configure logic entirely, and prevents
configure failures on 32-bit systems where /usr/bin/touch supports
64-bit timestamps.
Bug: https://bugs.gentoo.org/828001
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'profiles/default/linux/make.defaults')
-rw-r--r-- | profiles/default/linux/make.defaults | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/profiles/default/linux/make.defaults b/profiles/default/linux/make.defaults index db9698a32848..ac82c2ea8184 100644 --- a/profiles/default/linux/make.defaults +++ b/profiles/default/linux/make.defaults @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # # System-wide defaults for the Portage system @@ -57,4 +57,4 @@ LDFLAGS="-Wl,-O1 -Wl,--as-needed" # Mike Gilbert <floppym@gentoo.org> (2021-12-17) # Prevent automagic use of 64-bit time_t. # https://bugs.gentoo.org/828001 -gl_cv_type_time_t_bits_macro="no" +enable_year2038="no" |