diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-09-07 18:11:39 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-09-07 18:11:39 +0200 |
commit | 90f519718e56c95f9da266b0a3e1bfbf89563b86 (patch) | |
tree | f7bece7b26bc47bde9cb27d54356179865556124 /process | |
parent | 2b9b3be6a01f3c7a460a99b3ae5dfb255030e120 (diff) |
process: Use Git diff implementation.
Diffstat (limited to 'process')
-rwxr-xr-x | process | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -218,8 +218,8 @@ case $project:$action in < toolchain/logs/"$project"/"$hurd_host"/log_"$step" \ > toolchain/logs/"$project"/"$hurd_host"/log_"$step"_ r=0 - diff \ - -wu -F ^Running \ + git diff --no-index \ + --ignore-space-change --patience \ toolchain/logs/"$project"/"$linux_host"/log_"$step"_ \ toolchain/logs/"$project"/"$hurd_host"/log_"$step"_ \ > toolchain/logs/"$project"/log_"$step".diff \ @@ -246,8 +246,8 @@ case $project:$action in | gcc:test\ | gdb:test) r=0 - diff \ - -Nrwu -F ^Running \ + git diff --no-index \ + --ignore-space-change --patience \ toolchain/logs/"$project"/"$linux_host"/"$step"/ \ toolchain/logs/"$project"/"$hurd_host"/"$step"/ \ > toolchain/logs/"$project"/"$step".diff \ |