Unverified Commit e4e7969d authored by Colin's avatar Colin Committed by GitHub
Browse files

updateAutotoolsGnuConfigScriptsHook: fix error: attribute 'shell' (#497701)

parents ba110ce8 ddd2d5cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;