patch-tool-mxe: do not replace object id with 000

Previously patch-tool-mxe produced the following diffs:

    diff --git a/CMakeLists.txt b/CMakeLists.txt
    index 0000000..0000000 100644
    --- a/CMakeLists.txt
    +++ b/CMakeLists.txt

patch tool refused to apply this patch:

    The next patch would create the file CMakeLists.txt,
    which already exists!  Assume -R? [n]

This commit replaces 0000000..0000000 with 1111111..2222222.
This commit is contained in:
Boris Nagaev 2015-12-13 18:02:58 +03:00
parent de45bde5b9
commit 610569dc2e
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ function export_patch {
--stdout \
dist..HEAD | \
sed 's/^From [0-9a-f]\{40\} /From 0000000000000000000000000000000000000000 /' | \
sed 's/^index .......\.\......../index 0000000..0000000/'
sed 's/^index .......\.\......../index 1111111..2222222/'
) > $mxedir/src/${pkg}-${patch_name}.patch && \
echo "Generated ${mxedir}/src/${pkg}-${patch_name}.patch"
}