J'essaie de créer un patch avec la commande
git diff sourcefile >/var/lib/laymab/overlay/category/ebuild/files/thepatch.patch
quand j'applique le patch, ça me donne
$ patch -v
GNU patch 2.7.5
$ /usr/bin/patch -p1 </var/lib/laymab/overlay/category/ebuild/files/thepatch.patch
patching file sourcefile
Hunk #1 FAILED at 1 (different line endings).
Hunk #2 FAILED at 23 (different line endings).
Hunk #3 FAILED at 47 (different line endings).
Hunk #4 FAILED at 65 (different line endings).
Hunk #5 FAILED at 361 (different line endings).
5 out of 5 hunks FAILED -- saving rejects to file sourcefile.rej
J'ai essayé d'appliquer dos2unix au fichier src et au fichier patch, mais le message n'est pas parti ...
UPD: --ignore-whitespace n'aide pas trop
PATCH COMMAND: patch -p1 -g0 -E --no-backup-if-mismatch --ignore-whitespace --dry-run -f < '/var/lib/layman/dotnet/dev-dotnet/slntools/files/remove-wix-project-from-sln-file-v2.patch'
=====================================================
checking file Main/SLNTools.sln
Hunk #1 FAILED at 14 (different line endings).
Hunk #2 FAILED at 49 (different line endings).
Hunk #3 FAILED at 69 (different line endings).
Hunk #4 FAILED at 102 (different line endings).
4 out of 4 hunks FAILED
UPD: a trouvé un très bon article: /programming//a/4425433/1709408
sed -i.bak -e 's/\r$//g' something
. Je ne pense pas que dos2unix gère les extrémités de lignes mixtes aussi agressivement que vous le souhaitez.