Skip to content

Commit

Permalink
Quieten the compilation stage itself
Browse files Browse the repository at this point in the history
  • Loading branch information
rpep committed Mar 25, 2019
1 parent 5e8471d commit 8b35667
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/install-fftw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8b35667

Please sign in to comment.