From e84d2d935312526b14aa82011dd925a36c87b843 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 25 Nov 2002 13:17:17 +0000 Subject: [PATCH] remove trailing spaces --- config/srclist-update | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/srclist-update b/config/srclist-update index b4ae7c0cf..ef1bc2999 100755 --- a/config/srclist-update +++ b/config/srclist-update @@ -1,9 +1,9 @@ #!/bin/sh -# $Id: srclist-update,v 1.3 2002-11-25 00:20:03 karl Exp $ -# +# $Id: srclist-update,v 1.4 2002-11-25 13:17:17 meyering Exp $ +# # Check for files in directory $1 being up to date, according to the # list on stdin. Don't actually make any changes, just show the diffs. -# +# # Source `dirname $0`/srclistvars.sh first, if it exists. if test -n "$1"; then @@ -22,7 +22,7 @@ test -r $mydir/srclistvars.sh && . $mydir/srclistvars.sh # # $1 is input, output to stdout with gpl. -# +# fixlicense() \ { sed '/The .* is free software/,/USA\. *\*\//c\ @@ -47,7 +47,7 @@ fixlicense() \ # Remove $Id lines, since they'll differ between source locations. # If $options contains "gpl", change the license to be the standard # GPL. We use this for libc files. -# +# fixfile() \ { if echo "$options" | grep -w gpl >/dev/null; then @@ -64,28 +64,28 @@ cat | while read src dst options; do test -z "$dst" && continue # skip lines without second element echo "$src $dst" | sed 's/#.*$//' | egrep '^\s*$' >/dev/null \ && continue # skip whitespace and comment-only lines - + src=`eval echo $src` if test ! -r $src; then echo "$0: cannot read $src" >&2 continue fi - + # Ignore subdirs in src dir. E.g., if input spec is # src/subdir/foo.c dst # write destination file dst/foo.c. dst=`eval echo $dst` test -d $dst && dst=$dst/`basename $src` - + # Make changes for sake of comparison. fixfile $src $srctmp test -r $dst && fixfile $dst $dsttmp - + # don't show license differences. gplsrc=$TMPDIR/`basename $src` fixlicense $src >$gplsrc cmp -s $src $gplsrc && gplsrc=$src - + if test ! -e $dst; then echo "## $gplsrc $dst # new" $chicken cp -p $gplsrc $dst -- 2.11.0