From 10a0f753f2fe1f8979c777a64cb109973357e3ed Mon Sep 17 00:00:00 2001 From: daladim Date: Sun, 7 Jun 2020 22:39:01 +0200 Subject: [PATCH] Makefile: Using the --binary switch to patch This would otherwise fail when building on Windows/Cygwin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 06056d9..bb026fa 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ $(Status)/config: $(Status)/patch touch $(Status)/config $(Status)/patch: $(Status)/clone - cd $(SrcDir)/sshfs && for f in $(PrjDir)/patches/*.patch; do patch -p1 <$$f; done + cd $(SrcDir)/sshfs && for f in $(PrjDir)/patches/*.patch; do patch --binary -p1 <$$f; done touch $(Status)/patch $(Status)/clone: