From d14b7e01c0aa5078ec9e7e3c228d062543c1e11f Mon Sep 17 00:00:00 2001 From: Ward Fisher Date: Mon, 16 Oct 2017 10:06:46 -0600 Subject: [PATCH] Fixed shell script typo. --- nc-config.cmake.in | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nc-config.cmake.in b/nc-config.cmake.in index 6043d6ed7..a767fb994 100644 --- a/nc-config.cmake.in +++ b/nc-config.cmake.in @@ -79,7 +79,7 @@ else fi has_cdf5="@ENABLE_CDF5@" -if [ -z "has_cdf5" -o "$has_cdf5" = "OFF" -o "$has_cdf5" = "FALSE" ]; then +if [ -z "$has_cdf5" -o "$has_cdf5" = "OFF" -o "$has_cdf5" = "FALSE" ]; then has_cdf5="no" else has_cdf5="yes" @@ -315,13 +315,11 @@ while test $# -gt 0; do echo $has_cdf5 ;; - --libs) - ;; - --has-parallel) echo $has_parallel ;; + --libs) echo $libs ;;