Skip to content

Commit

Permalink
embed-helper: Fix the lipo invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Mar 19, 2024
1 parent 66b8e9c commit 1e6d665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/embed-helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main(argv):
embedded_helper = priv_dir / "frida-helper"

if helper_modern is not None and helper_legacy is not None:
subprocess.run([lipo, helper_modern, helper_legacy, "-create", "-output", embedded_helper],
subprocess.run(lipo + [helper_modern, helper_legacy, "-create", "-output", embedded_helper],
check=True)
elif helper_modern is not None:
shutil.copy(helper_modern, embedded_helper)
Expand Down

0 comments on commit 1e6d665

Please sign in to comment.