summaryrefslogtreecommitdiffstats
path: root/src/util/libupdate.sh
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1997-11-14 01:30:21 +0000
committerTheodore Tso <tytso@mit.edu>1997-11-14 01:30:21 +0000
commit8d301ed24ed033018752770c0745df4a8331294a (patch)
tree42cecee08cd881f521a4bb929ef5d55533a969e2 /src/util/libupdate.sh
parent2cd43e5cc511f183bda6582c8c3a822e4b28d806 (diff)
downloadkrb5-8d301ed24ed033018752770c0745df4a8331294a.tar.gz
krb5-8d301ed24ed033018752770c0745df4a8331294a.tar.xz
krb5-8d301ed24ed033018752770c0745df4a8331294a.zip
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
Diffstat (limited to 'src/util/libupdate.sh')
-rw-r--r--src/util/libupdate.sh4
1 files changed, 2 insertions, 2 deletions
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`