From 754b7e7bc5e80862543406de0ecac02dda110aa9 Mon Sep 17 00:00:00 2001 From: Arron Atchison Date: Fri, 24 Feb 2017 10:07:02 -0600 Subject: [PATCH] updated mimic to 1.2.0.1 with gcc fix; added make install; it's working great now --- scripts/install-mimic.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/install-mimic.sh b/scripts/install-mimic.sh index 40a2a19371..075efb38fd 100755 --- a/scripts/install-mimic.sh +++ b/scripts/install-mimic.sh @@ -4,7 +4,7 @@ set -Ee MIMIC_DIR=mimic CORES=$(nproc) -MIMIC_VERSION=1.2.0 +MIMIC_VERSION=1.2.0.1 # download and install mimic if [ ! -d ${MIMIC_DIR} ]; then @@ -12,7 +12,8 @@ if [ ! -d ${MIMIC_DIR} ]; then cd ${MIMIC_DIR} ./autogen.sh ./configure --with-audio=alsa --enable-shared --prefix=$(pwd) - make -j$CORES CFLAGS=-D_DEFAULT_SOURCE $(CFLAGS) + make -j$CORES + make install else # ensure mimic is up to date cd ${MIMIC_DIR} @@ -20,5 +21,6 @@ else ./autogen.sh ./configure --with-audio=alsa --enable-shared --prefix=$(pwd) make clean - make -j$CORES CFLAGS=-D_DEFAULT_SOURCE $(CFLAGS) + make -j$CORES + make install fi