And autogen needs the ".sh"

pull/541/head
Arron Atchison 2017-02-23 09:34:52 -06:00
parent e41a23e5fe
commit a7f0e9265d
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ MIMIC_VERSION=1.2.0
if [ ! -d ${MIMIC_DIR} ]; then
git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git
cd ${MIMIC_DIR}
./autogen
./autogen.sh
./configure --with-audio=alsa --enable-shared
make #-j$CORES
else
@ -18,7 +18,7 @@ else
cd ${MIMIC_DIR}
git pull
make clean
./autogen
./autogen.sh
./configure --with-audio=alsa --enable-shared
make #-j$CORES
fi