view armadillo-3.900.4/configure @ 75:f1717a01dd9a

Remove line that does nothing
author Chris Cannam
date Thu, 24 Jan 2019 15:06:13 +0000
parents 1ec0e2823891
children
line wrap: on
line source
#!/bin/sh

ABORT=no

check_cmake()
  {
  (cmake --version) </dev/null >/dev/null 2>&1 ||
    {
    echo "error: cmake (version 2.6 or later) must be present to configure and install Armadillo"
    echo ""
    echo "cmake might be available as a package for your system,"
    echo "or can be downloaded from http://cmake.org"
    ABORT=yes
    }
  }

check_cmake

test "$ABORT" = yes && exit -1

rm -f CMakeCache.txt
cmake .