From: Ezra Peisach Date: Sat, 11 May 1996 21:41:12 +0000 (+0000) Subject: When invoked with --force, do not use variable before being set X-Git-Tag: krb5-1.0-beta6~100 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=02caabca511dcc6b9b680930eca5dd9e0502d69e;p=krb5.git When invoked with --force, do not use variable before being set 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 --- diff --git a/src/util/ChangeLog b/src/util/ChangeLog index d96f078f0..6a9049508 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,8 @@ +Sat May 11 17:38:41 1996 Ezra Peisach + + * libupdate.sh: When using --force, do not use variable before + being set. + Tue Apr 16 22:26:36 1996 Ken Raeburn Wed Mar 6 05:02:36 1996 Mark Eichin diff --git a/src/util/libupdate.sh b/src/util/libupdate.sh index 09e296d50..05f20317c 100644 --- a/src/util/libupdate.sh +++ b/src/util/libupdate.sh @@ -15,7 +15,7 @@ if test "$1" = "--force" then force=yes arcmd="$ARCHIVE" - rmcmd="rm -f $library" + rmcmd="rm -f $2" shift fi