summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-10 19:21:02 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-10 19:21:02 +0000
commitd8f8e56be6d986c615e79a8470aa4b773165c0e0 (patch)
treee92a42e2c44905dbcf1cda8462055e1fc84e6f13 /TOOLS
parent89729c7f766c61a81ae93c6381f79019c1951917 (diff)
downloadmpv-d8f8e56be6d986c615e79a8470aa4b773165c0e0.tar.bz2
mpv-d8f8e56be6d986c615e79a8470aa4b773165c0e0.tar.xz
typo, wrong variable name
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20847 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/install-w32codecs.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/TOOLS/install-w32codecs.sh b/TOOLS/install-w32codecs.sh
index 4f388625f8..c4ab61cf4b 100755
--- a/TOOLS/install-w32codecs.sh
+++ b/TOOLS/install-w32codecs.sh
@@ -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
;;