updateAutotoolsGnuConfigScriptsHook: fix error: attribute 'shell'

missing
This commit is contained in:
eymeric
2026-03-12 13:23:08 +01:00
committed by System administrator
parent f9ddc75fe5
commit ddd2d5cf95
+1 -1
View File
@@ -288,7 +288,7 @@ with pkgs;
name = "update-autotools-gnu-config-scripts-hook";
substitutions = {
gnu_config = gnu-config.override {
runtimeShell = targetPackages.stdenv.shell;
runtimeShell = if stdenv.buildPlatform == stdenv.hostPlatform then stdenv.shell else runtimeShell;
};
};
} ../build-support/setup-hooks/update-autotools-gnu-config-scripts.sh;