diff options
Diffstat (limited to 'Tools/scripts/update-patches')
-rwxr-xr-x | Tools/scripts/update-patches | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/update-patches b/Tools/scripts/update-patches index c53f0e30060c..51e4b4fc5571 100755 --- a/Tools/scripts/update-patches +++ b/Tools/scripts/update-patches @@ -28,7 +28,7 @@ # Find out all .orig files and strip the name to what diff will use cd $PATCH_WRKSRC && find . -type f -name '*.orig' | fgrep -v $DISTORIG | \ sed -e "s,^./\(.*\)\.orig\$,\1," | { -while read file +while read file do echo 1>&2 "Processing $file" # look in patchdir for an existing patchfile matching this @@ -78,7 +78,7 @@ do case $i in \ *.orig|*.rej|*~) ;; *) - for j in $accounted + for j in $accounted do if [ $j = $i ] then |