minstall: Pass correct destination file path to $RM regardless of source path.
diff --git a/bin/minstall b/bin/minstall
index 210c275..819b2bc 100755
--- a/bin/minstall
+++ b/bin/minstall
@@ -65,7 +65,7 @@
 
 		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"`