summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2013-09-07 18:11:39 +0200
committerThomas Schwinge <thomas@codesourcery.com>2013-09-07 18:11:39 +0200
commit90f519718e56c95f9da266b0a3e1bfbf89563b86 (patch)
treef7bece7b26bc47bde9cb27d54356179865556124
parent2b9b3be6a01f3c7a460a99b3ae5dfb255030e120 (diff)
process: Use Git diff implementation.
-rwxr-xr-xprocess8
1 files changed, 4 insertions, 4 deletions
diff --git a/process b/process
index 3e14ed11..cc504458 100755
--- a/process
+++ b/process
@@ -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 \