From 94df370f4e2278f97af32e58744bb525c1718023 Mon Sep 17 00:00:00 2001 From: Fincer Date: Fri, 27 Apr 2018 23:50:09 +0300 Subject: [PATCH] Add 'Create patch file' shell script --- 3-create-patchfile.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 3-create-patchfile.sh diff --git a/3-create-patchfile.sh b/3-create-patchfile.sh new file mode 100755 index 0000000..e8fc288 --- /dev/null +++ b/3-create-patchfile.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +# Create a patch file from winecfg code changes in the subdirectory b. + +LC_ALL=C diff -Burp a/programs/winecfg/ b/programs/winecfg/ | grep -vi '^only in' > wine-staging_winecfg.patch