From a7f0e9265d066b45a955045a55873c9b518b5f5e Mon Sep 17 00:00:00 2001 From: Arron Atchison Date: Thu, 23 Feb 2017 09:34:52 -0600 Subject: [PATCH] And autogen needs the ".sh" --- scripts/install-mimic.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-mimic.sh b/scripts/install-mimic.sh index aab5f97c68..a9a6bc98b0 100755 --- a/scripts/install-mimic.sh +++ b/scripts/install-mimic.sh @@ -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