Allow builder.py to inherit the system proxy settings from
the env if they are present.
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
def build(self):
env = {"PATH": os.environ["PATH"]}
+ if "http_proxy" in os.environ:
+ self.logfile.write("Using system proxy: " +
+ os.environ["http_proxy"] + "\n")
+ self.logfile.flush()
+ env['http_proxy'] = os.environ["http_proxy"]
+ env['https_proxy'] = os.environ["http_proxy"]
cmd = ["make", "-C", self.builddir]
ret = subprocess.call(cmd, stdout=self.logfile, stderr=self.logfile,
env=env)