From 979c02158d95ad3cbdd17a14c0f3d6f415ae58fa Mon Sep 17 00:00:00 2001 From: el-tocino Date: Wed, 29 Aug 2018 04:25:14 -0500 Subject: [PATCH] Issue 1475: Mimic build failed when spaces in the path (#1772) * fix for path with spaces in mimic build --- scripts/install-mimic.sh | 4 ++-- scripts/my-info.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 scripts/my-info.sh diff --git a/scripts/install-mimic.sh b/scripts/install-mimic.sh index f5f31e8806..86ffc4a6ab 100755 --- a/scripts/install-mimic.sh +++ b/scripts/install-mimic.sh @@ -30,7 +30,7 @@ if [ ! -d ${MIMIC_DIR} ] ; then git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git --depth=1 cd ${MIMIC_DIR} ./autogen.sh - ./configure --with-audio=alsa --enable-shared --prefix=$(pwd) + ./configure --with-audio=alsa --enable-shared --prefix="$(pwd)" make -j${CORES} make install else @@ -41,7 +41,7 @@ else git fetch --all --tags --prune git checkout tags/${MIMIC_VERSION} ./autogen.sh - ./configure --with-audio=alsa --enable-shared --prefix=$(pwd) + ./configure --with-audio=alsa --enable-shared --prefix="$(pwd)" make clean make -j${CORES} make install diff --git a/scripts/my-info.sh b/scripts/my-info.sh old mode 100755 new mode 100644