changeset 20831:0432c831819d

typo, wrong variable name
author diego
date Fri, 10 Nov 2006 19:21:02 +0000
parents 02aa52c90da7
children ecba222789b3
files TOOLS/install-w32codecs.sh
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/install-w32codecs.sh	Fri Nov 10 18:46:20 2006 +0000
+++ b/TOOLS/install-w32codecs.sh	Fri Nov 10 19:21:02 2006 +0000
@@ -158,20 +158,20 @@
     ;;
 
   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
     ;;