When invoked with --force, do not use variable before being set
authorEzra Peisach <epeisach@mit.edu>
Sat, 11 May 1996 21:41:12 +0000 (21:41 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sat, 11 May 1996 21:41:12 +0000 (21:41 +0000)
NetBSD complained about trying to use the command "rm -f"

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

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

index d96f078f0bbf45c3ec98db054bd4cd15fd3fe69d..6a904950866d1f77eaf5249c52cc2a9bbe7279e8 100644 (file)
@@ -1,3 +1,8 @@
+Sat May 11 17:38:41 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * libupdate.sh: When using --force, do not use variable before
+               being set. 
+
 Tue Apr 16 22:26:36 1996  Ken Raeburn  <raeburn@cygnus.com>
 
        Wed Mar  6 05:02:36 1996  Mark Eichin  <eichin@cygnus.com>
index 09e296d501eb16e3421124c4f19ef98b25e38298..05f20317c4e9f9e7eb000f710e9ed02d7bb9c504 100644 (file)
@@ -15,7 +15,7 @@ if test "$1" = "--force"
 then
        force=yes
        arcmd="$ARCHIVE"
-       rmcmd="rm -f $library"
+       rmcmd="rm -f $2"
        shift
 fi