From 8b35667db52e916d5d8b9e03b895b7e646d426f2 Mon Sep 17 00:00:00 2001 From: Ryan Pepper Date: Mon, 25 Mar 2019 15:53:26 +0000 Subject: [PATCH] Quieten the compilation stage itself --- bin/install-fftw.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/install-fftw.sh b/bin/install-fftw.sh index 41554330..a52c5d4c 100755 --- a/bin/install-fftw.sh +++ b/bin/install-fftw.sh @@ -35,8 +35,10 @@ download_and_install() { echo "Configuring "${1}"." ./configure --quiet --enable-shared --enable-openmp --enable-sse2 --enable-avx --prefix=${LIBS_DIR} echo "Compiling and installing "${1}"." - make - make install + { + make + make install + } > /dev/null echo "Done." cd ${LIBS_DIR} fi;