diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2006-12-11 17:45:06 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-12-11 17:45:06 +0100 |
commit | 26626c0052cd5442f609659aa9ed25ac78e65b55 (patch) | |
tree | af35a73ac64d910e551730df77fed66ab84625cc | |
parent | d71a5647a3ed4aadd46edfa8a031ffc87d88c5f7 (diff) |
minstall: Pass correct destination file path to $RM regardless of source path.
-rwxr-xr-x | bin/minstall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/minstall b/bin/minstall index 210c2758d3..819b2bc7e4 100755 --- a/bin/minstall +++ b/bin/minstall @@ -65,7 +65,7 @@ if [ $# -ge 2 ] ; then elif [ -f "$FILE" ] ; then #echo "$FILE" is a regular file - $RM "$DEST/$FILE" + $RM "$DEST/`basename $FILE`" cp "$FILE" "$DEST" if [ $MODE ] ; then FILE=`basename "$FILE"` |