From: Theodore Tso Date: Fri, 14 Nov 1997 01:30:21 +0000 (+0000) Subject: libupdate.sh: Add semicolons to prevent Bash 2.0 from complaining. X-Git-Tag: krb5-1.1-beta1~955 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8d301ed24ed033018752770c0745df4a8331294a;p=krb5.git libupdate.sh: Add semicolons to prevent Bash 2.0 from complaining. [krb5-build/486] git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10279 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/ChangeLog b/src/util/ChangeLog index 2753dc6db..881568386 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 13 20:28:31 1997 Theodore Y. Ts'o + + * libupdate.sh: Add semicolons to prevent Bash 2.0 from + complaining. [krb5-build/486] + Wed Oct 8 16:19:49 1997 Tom Yu * mkrel: Allow for edits of relevant files that should be changed diff --git a/src/util/libupdate.sh b/src/util/libupdate.sh index fe0dab8e9..8c3e61ece 100644 --- a/src/util/libupdate.sh +++ b/src/util/libupdate.sh @@ -25,7 +25,7 @@ oblist=$2 shift shift for dir do - oblists="$oblists${oblists+ }$dir/$oblist" + oblists="$oblists${oblists+ }$dir/$oblist"; done stamp=`echo $library | sed -e 's/.a$/.stamp/'` @@ -41,4 +41,4 @@ echo "Updating library $library from $oblists" $rmcmd $arcmd $library `for dir do (cd $dir; cat $oblist | \ - sed -e "s;^\([^ ]*\);$dir/\1;g" -e "s; \([^ ]*\); $dir/\1;g") done` + sed -e "s;^\([^ ]*\);$dir/\1;g" -e "s; \([^ ]*\); $dir/\1;g"); done`