Unverified Commit af98420e authored by Artturin's avatar Artturin Committed by GitHub
Browse files

cc-wrapper: Use `getExe` for `expand-response-params` (#341607)

parents d489b14c e791a35b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -739,7 +739,7 @@ stdenvNoCC.mkDerivation {

    # for substitution in utils.bash
    # TODO(@sternenseemann): invent something cleaner than passing in "" in case of absence
    expandResponseParams = "${expand-response-params}/bin/expand-response-params";
    expandResponseParams = lib.optionalString (expand-response-params != "") (lib.getExe expand-response-params);
    # TODO(@sternenseemann): rename env var via stdenv rebuild
    shell = getBin runtimeShell + runtimeShell.shellPath or "";
    gnugrep_bin = optionalString (!nativeTools) gnugrep;