Skip to content

Commit

Permalink
fix: tell patch not to create .orig files when patches do not apply w…
Browse files Browse the repository at this point in the history
…ithout offset

Signed-off-by: Christopher Arndt <[email protected]>
  • Loading branch information
SpotlightKid committed May 16, 2023
1 parent b0b5a48 commit 748e802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ libs: submodules patch
patch: submodules
@-for p in $(DPF_PATCHES); do \
echo "Applying patch '$${p}'..."; \
patch -d dpf -r - -p1 -N -V none -i ../patches/$${p}; \
patch -d dpf -r - -p1 -N --no-backup-if-mismatch -i ../patches/$${p}; \
done

plugins: $(PLUGINS)
Expand Down

0 comments on commit 748e802

Please sign in to comment.