commit: 14a601e15ab01beb11974a83930e8be4a91090a8 Author: Jannik Glückert <jannik.glueckert <AT> gmail <DOT> com> AuthorDate: Sat Mar 29 20:24:00 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Mar 29 20:41:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14a601e1
profiles: fix illegal variable name PMS 5.2.4 make.defaults > A variable name must start with one of a-zA-Z Signed-off-by: Jannik Glückert <jannik.glueckert <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/41374 Signed-off-by: Sam James <sam <AT> gentoo.org> profiles/features/time64/make.defaults | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/profiles/features/time64/make.defaults b/profiles/features/time64/make.defaults index 0edc40fa682e..b8990b710b0b 100644 --- a/profiles/features/time64/make.defaults +++ b/profiles/features/time64/make.defaults @@ -3,12 +3,10 @@ # Many profiles and stages override CFLAGS etc, and need then to eat their # own dogfood. For those who don't... -__COMMON_FLAGS_TIME64="-D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64" - -CFLAGS="${CFLAGS} ${__COMMON_FLAGS_TIME64} -Werror=implicit-function-declaration -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=return-type -Werror=int-conversion" -CXXFLAGS="${CXXFLAGS} ${__COMMON_FLAGS_TIME64}" -FCFLAGS="${FCFLAGS} ${__COMMON_FLAGS_TIME64}" -FFLAGS="${FFLAGS} ${__COMMON_FLAGS_TIME64}" +CFLAGS="${CFLAGS} -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64 -Werror=implicit-function-declaration -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=return-type -Werror=int-conversion" +CXXFLAGS="${CXXFLAGS} -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64" +FCFLAGS="${FCFLAGS} -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64" +FFLAGS="${FFLAGS} -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64" # We need to switch this explicitly on since it's explicitly disabled # in profiles otherwise.
