libupdate.sh: Add semicolons to prevent Bash 2.0 from complaining.
authorTheodore Tso <tytso@mit.edu>
Fri, 14 Nov 1997 01:30:21 +0000 (01:30 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 14 Nov 1997 01:30:21 +0000 (01:30 +0000)
[krb5-build/486]

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10279 dc483132-0cff-0310-8789-dd5450dbe970

src/util/ChangeLog
src/util/libupdate.sh

index 2753dc6db35d020d2428cd83c90e4cabfda52892..8815683865b2cbd24a6851c79972cbd97c5b2f9d 100644 (file)
@@ -1,3 +1,8 @@
+Thu Nov 13 20:28:31 1997  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * libupdate.sh: Add semicolons to prevent Bash 2.0 from
+               complaining.  [krb5-build/486]
+
 Wed Oct  8 16:19:49 1997  Tom Yu  <tlyu@mit.edu>
 
        * mkrel: Allow for edits of relevant files that should be changed
index fe0dab8e944590574a33e63f08e61124f1c83a1d..8c3e61ece2b208e25f568704da694e27119047fe 100644 (file)
@@ -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`