typo, wrong variable name

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20847 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-10 19:21:02 +00:00
parent 89729c7f76
commit d8f8e56be6
1 changed files with 3 additions and 3 deletions

View File

@ -158,20 +158,20 @@ case "$1" in
;;
uninstall)
cd $DIR/
cd $CODECDIR/
rm -rf mplayer_binary_codecs
#FIXME we need a better clean system
if which symlinks > /dev/null ; then
symlinks -d .
else
echo "please install the package 'symlinks' and run 'symlinks -d $DIR' "
echo "please install the package 'symlinks' and run 'symlinks -d $CODECDIR' "
fi
echo "Uninstalled Succesfully!"
;;
*)
echo "Usage: {install|uninstall}"
echo "This program will install binary codecs for mplayer"
echo "This program will install binary codecs for MPlayer."
exit 1
;;