From efda4e563573bf4c01697d2a3576c9045a1125aa Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 18 May 2004 09:52:32 +0000 Subject: [PATCH] Do a better job of finding the .rej files to edit (since they can be in a subdir). --- verify-patches | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/verify-patches b/verify-patches index 44251d6..7100d32 100755 --- a/verify-patches +++ b/verify-patches @@ -59,14 +59,14 @@ for xx in "${@}"; do [Ee]*) [ ! -z "$new" ] && cvs add $new new='' - rm -f *.rej *.orig + rm -f *.rej *.orig */*.rej */*.orig sed '/^--- /,$ d' $xx >,new.patch cvs diff -N | egrep -v '^(diff -|===============|RCS file: |retrieving revision |Index: )' >>,new.patch vim -d $xx ,new.patch default=U ;; [Ff]*) - vim *.rej + vim `sed -ne 's/.* saving rejects to file //p' ,patch.output` default=E ;; [Uu]*) -- 2.34.1