Commit 8e9a1ac364

Michael Dusan <michael.dusan@gmail.com>
2021-01-07 15:16:27
builder: propagate env_map for child processes
1 parent 7077128
Changed files (1)
lib
lib/std/build.zig
@@ -1038,6 +1038,7 @@ pub const Builder = struct {
         child.stdin_behavior = .Ignore;
         child.stdout_behavior = .Pipe;
         child.stderr_behavior = stderr_behavior;
+        child.env_map = self.env_map;
 
         try child.spawn();