--- a/run
+++ b/run
@@ -14,7 +14,7 @@
$BUILD
if [ $? == 0 ]
then
- echo
+ echo
echo " VirtualReader - Version 0.1"
echo
echo " Navigation Keys:"
@@ -31,7 +31,7 @@
echo " ##############################"
echo " Press ENTER to Start"
read
- case $1 in
+ case $1 in
valgrind)
$VALGRIND $PROG $OPTIONS
;;
@@ -40,15 +40,15 @@
;;
gdb)
echo "break 67">gdb.exec
- echo "r $OPTIONS" >> gdb.exec
+ echo "r $OPTIONS" >> gdb.exec
DEBUG=1 $GDB -x gdb.exec $PROG
- rm -f gdb.exec
+ rm -f gdb.exec
;;
ddd)
echo "break 67">gdb.exec
- echo "r $OPTIONS" >> gdb.exec
+ echo "r $OPTIONS" >> gdb.exec
$DDD -x gdb.exec $PROG
- rm -f gdb.exec
+ rm -f gdb.exec
;;
splint)
$SPLINT -Iinclude -DMBROLA -warnposix src/main.c
@@ -56,13 +56,13 @@
help)
echo "Usage: run [commands]"
echo "valid commands are: strace, gdb, \
-ddd, valgrind and help"
- exit 0
+ddd, valgrind and help"
+ exit 0
;;
*)
$PROG $OPTIONS
;;
- esac
+ esac
fi
rm -f audio/*.wav;
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,6 +1,6 @@
###### USER CONFIG ###############
TARGET = ../bin/vreader #
-MBROLA = /opt/mbrola/bin/mbrola #
+MBROLA = /opt/mbrola/bin/mbrolas #
FESTIVAL= /usr/bin/festival #
INSTDIR = ~/bin #
##### USER CONFIG ENDS ###########