commit 6faeeca1d383f43cbc904904dbf7c7a6e3193461
parent 2691fa97bd7b9c377d9b77c442f6517185df7efb
Author: umhau <umhau@users.noreply.github.com>
Date: Fri, 9 Dec 2016 17:35:10 -0500
fixed where the compile option goes, and added dependency
Diffstat:
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/installdependencies.sh b/installdependencies.sh
@@ -64,6 +64,11 @@ echo "Installing perl..."
sudo apt-get install perl -y
echo
+# needed for compiling
+echo "Installing bison..."
+sudo apt-get install bison -y
+echo
+
# python development version: needed for sphinxbase
echo "Installing python-dev..."
sudo apt-get install python-dev -y
@@ -101,8 +106,8 @@ if [ ! -d $installation_directory/sphinxbase/ ]; then
cd $installation_directory
git clone https://github.com/cmusphinx/sphinxbase.git
cd ./sphinxbase
- ./autogen.sh
- ./configure --with-sphinxbase-build
+ ./autogen.sh --with-sphinxbase-build
+ ./configure
make -j $CORES
make -j $CORES check
sudo make -j $CORES install