summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util/ChangeLog5
-rw-r--r--src/util/libupdate.sh4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog
index 2753dc6db3..8815683865 100644
--- a/src/util/ChangeLog
+++ b/src/util/ChangeLog
@@ -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
diff --git a/src/util/libupdate.sh b/src/util/libupdate.sh
index fe0dab8e94..8c3e61ece2 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`