diff options
author | Boris Nagaev <bnagaev@gmail.com> | 2015-11-29 12:35:49 (GMT) |
---|---|---|
committer | Boris Nagaev <bnagaev@gmail.com> | 2015-11-29 12:42:09 (GMT) |
commit | 06ff4c57b046fc5493694627ca73638c00116b71 (patch) | |
tree | facded09bae42d8339f45561beac4f25b4916e5d /tools/patch-tool-mxe | |
parent | eb332fde2e122bad9553f7db627e8440e56cd618 (diff) | |
download | mxe-06ff4c57b046fc5493694627ca73638c00116b71.zip mxe-06ff4c57b046fc5493694627ca73638c00116b71.tar.gz mxe-06ff4c57b046fc5493694627ca73638c00116b71.tar.bz2 |
patch-tool-mxe: omit signature with git version
Signature is a string like:
--
1.9.1
Decrease patch diff size.
See #983
Diffstat (limited to 'tools/patch-tool-mxe')
-rwxr-xr-x | tools/patch-tool-mxe | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/patch-tool-mxe b/tools/patch-tool-mxe index f7ae75c..a827710 100755 --- a/tools/patch-tool-mxe +++ b/tools/patch-tool-mxe @@ -94,7 +94,12 @@ function export_patch { echo '' echo 'Contains ad hoc patches for cross building.' echo '' - git format-patch --no-numbered -p --stdout dist..HEAD + git format-patch \ + --no-numbered \ + -p \ + --no-signature \ + --stdout \ + dist..HEAD ) > $mxedir/src/${pkg}-${patch_name}.patch && \ echo "Generated ${mxedir}/src/${pkg}-${patch_name}.patch" } |