1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-07 07:02:53 +03:00

sigar + libzmq

Summary: Add lizmq and sigar in prepare for fbzmq oss build migration.

Reviewed By: wez

Differential Revision: D15387435

fbshipit-source-id: 1ec2057972bf801a1598af0a1ae87f958394d812
This commit is contained in:
Jingyi Yang
2019-05-20 21:35:40 -07:00
committed by Facebook Github Bot
parent d3b6e55f74
commit 70a9ff0bdc
3 changed files with 33 additions and 1 deletions

View File

@@ -183,7 +183,7 @@ class AutoconfBuilder(BuilderBase):
# by the project on the basis that it may know more than plain
# autoreconf does.
if os.path.exists(autogen_path):
self._run_cmd([autogen_path], cwd=self.src_dir, env=env)
self._run_cmd(["bash", autogen_path], cwd=self.src_dir, env=env)
else:
self._run_cmd(["autoreconf", "-ivf"], cwd=self.src_dir, env=env)
configure_cmd = [configure_path, "--prefix=" + self.inst_dir] + self.args