From: Michel Dänzer Date: Mon, 11 Dec 2006 16:45:06 +0000 (+0100) Subject: minstall: Pass correct destination file path to $RM regardless of source path. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9795c6ca253b25b2b15967b064f32d9b822a1c8;p=mesa.git minstall: Pass correct destination file path to $RM regardless of source path. (cherry picked from 26626c0052cd5442f609659aa9ed25ac78e65b55 commit) --- diff --git a/bin/minstall b/bin/minstall index 210c2758d37..819b2bc7e4a 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"`