jdk8: disable structuredAttrs (#425561)

This commit is contained in:
K900 2025-07-16 07:12:02 +03:00 committed by GitHub
commit 91e56b8907
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -427,8 +427,8 @@ stdenv.mkDerivation (finalAttrs: {
buildFlags = if atLeast17 then [ "images" ] else [ "all" ];
separateDebugInfo = true;
__structuredAttrs = true;
separateDebugInfo = atLeast11;
__structuredAttrs = atLeast11;
# -j flag is explicitly rejected by the build system:
# Error: 'make -jN' is not supported, use 'make JOBS=N'