Skip to content

Commit

Permalink
cbuild: list instead of concat
Browse files Browse the repository at this point in the history
  • Loading branch information
q66 committed Sep 30, 2024
1 parent c8ddb63 commit b89d8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbuild/util/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def patch(pkg, patch_path, wrksrc=None, patch_args=[]):
if not patch_path.is_file():
pkg.error(f"patch does not exist: {patch_path}")

pargs = ["-sNp1"] + patch_args
pargs = ["-sNp1", *patch_args]

# in bootstrap envs we might be using gnu patch with different args
gnupatch = _determine_gnupatch(pkg)
Expand Down

0 comments on commit b89d8d9

Please sign in to comment.