Issue 1475: Mimic build failed when spaces in the path (#1772)

* fix for path with spaces in mimic build
pull/1774/head
el-tocino 2018-08-29 04:25:14 -05:00 committed by Steve Penrod
parent 80a37ec46a
commit 979c02158d
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ if [ ! -d ${MIMIC_DIR} ] ; then
git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git --depth=1 git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git --depth=1
cd ${MIMIC_DIR} cd ${MIMIC_DIR}
./autogen.sh ./autogen.sh
./configure --with-audio=alsa --enable-shared --prefix=$(pwd) ./configure --with-audio=alsa --enable-shared --prefix="$(pwd)"
make -j${CORES} make -j${CORES}
make install make install
else else
@ -41,7 +41,7 @@ else
git fetch --all --tags --prune git fetch --all --tags --prune
git checkout tags/${MIMIC_VERSION} git checkout tags/${MIMIC_VERSION}
./autogen.sh ./autogen.sh
./configure --with-audio=alsa --enable-shared --prefix=$(pwd) ./configure --with-audio=alsa --enable-shared --prefix="$(pwd)"
make clean make clean
make -j${CORES} make -j${CORES}
make install make install

0
scripts/my-info.sh Executable file → Normal file
View File