Skip to content

Commit

Permalink
fixup! plex: add macos build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
sztomi committed Oct 16, 2019
1 parent 93bef3d commit 8560957
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plex/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ def run_macos(self, is_dry, flags, env):
print(f"export {key}='{value}'", file=script)
print(file=script)
print(f"python -V", file=script)
print("./configure", file=script)
print(f"./make -j {self.jobs}", file=script)
print(f"./make install", file=script)
print("../configure", file=script)
print(f"make -j {self.jobs}", file=script)
print(f"make install", file=script)
build_script = Path("plex_build.sh")
with build_script.open("w") as fp:
fp.write(script.getvalue())
Expand Down

0 comments on commit 8560957

Please sign in to comment.