comparison TOOLS/install-w32codecs.sh @ 20831:0432c831819d

typo, wrong variable name
author diego
date Fri, 10 Nov 2006 19:21:02 +0000
parents c53da7ea44a0
children
comparison
equal deleted inserted replaced
20830:02aa52c90da7 20831:0432c831819d
156 exit 1 156 exit 1
157 fi 157 fi
158 ;; 158 ;;
159 159
160 uninstall) 160 uninstall)
161 cd $DIR/ 161 cd $CODECDIR/
162 rm -rf mplayer_binary_codecs 162 rm -rf mplayer_binary_codecs
163 #FIXME we need a better clean system 163 #FIXME we need a better clean system
164 if which symlinks > /dev/null ; then 164 if which symlinks > /dev/null ; then
165 symlinks -d . 165 symlinks -d .
166 else 166 else
167 echo "please install the package 'symlinks' and run 'symlinks -d $DIR' " 167 echo "please install the package 'symlinks' and run 'symlinks -d $CODECDIR' "
168 fi 168 fi
169 echo "Uninstalled Succesfully!" 169 echo "Uninstalled Succesfully!"
170 ;; 170 ;;
171 171
172 *) 172 *)
173 echo "Usage: {install|uninstall}" 173 echo "Usage: {install|uninstall}"
174 echo "This program will install binary codecs for mplayer" 174 echo "This program will install binary codecs for MPlayer."
175 exit 1 175 exit 1
176 ;; 176 ;;
177 177
178 esac 178 esac
179 179