scripts/update-patches: disable rename detection

git 2.9 enables rename detection by default, changing the content of some
of our patch files. Explicitly disable it.
This commit is contained in:
Matthias Schiffer 2016-07-01 13:22:09 +02:00
parent 6b644df4ae
commit e678ab140e
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ for module in $GLUON_MODULES; do
n=0
for commit in $(git rev-list --reverse --no-merges base..patched); do
let n=n+1
git show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' $commit > "$GLUONDIR"/patches/$module/"$(printf '%04u' $n)-$(git show -s --pretty=format:%f $commit).patch"
git show --pretty=format:'From: %an <%ae>%nDate: %aD%nSubject: %B' --no-renames $commit > "$GLUONDIR"/patches/$module/"$(printf '%04u' $n)-$(git show -s --pretty=format:%f $commit).patch"
done
done