Commit 34f1ec22 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Fix typo in configuration messages

parent 49643137
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -364,8 +364,8 @@ result=$?
if [ "x$result" = "x0" ]; then
    CLANGFLAGS=" -stdlib=libstdc++"
fi
echo -n "configure: checking wether $CXX works... "
echo -n "configure: checking wether $CXX works... " >>configure.log
echo -n "configure: checking whether $CXX works... "
echo -n "configure: checking whether $CXX works... " >>configure.log
cat > test_compiler.cpp <<EOF
int main() {
  int i = -1;
@@ -385,8 +385,8 @@ else
    echo "ERROR: $CXX is not a working C++ compiler!" >>configure.log
    exit 2
fi
echo -n "configure: checking wether $CXX supports -ggdb... "
echo -n "configure: checking wether $CXX supports -ggdb... " >>configure.log
echo -n "configure: checking whether $CXX supports -ggdb... "
echo -n "configure: checking whether $CXX supports -ggdb... " >>configure.log
$CXX $CLANGFLAGS -ggdb test_compiler.cpp -o test_compiler > /dev/null 2>>error.log
result=$?
if [ "x$result" = "x0" ]; then
@@ -410,8 +410,8 @@ else
    echo "no"
    echo "no" >>configure.log
fi
echo -n "configure: checking wether $CXX is a MPI compiler... "
echo -n "configure: checking wether $CXX is a MPI compiler... " >>configure.log
echo -n "configure: checking whether $CXX is a MPI compiler... "
echo -n "configure: checking whether $CXX is a MPI compiler... " >>configure.log
cat > test_compiler.cpp <<EOF
# include <mpi.h>
int main() {