summaryrefslogtreecommitdiff
path: root/Tests/SimpleInstallS2
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-08-10 23:20:58 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2006-08-10 23:20:58 -0400
commit372b6932ed5d7278bcdf2c3d6d206df0a01063ca (patch)
treeb7d8c356afd13abba3e195f8f845ca308dd5f19b /Tests/SimpleInstallS2
parent76d05cd5fa34e2a54f91f3388fe2849064c05b5e (diff)
downloadcmake-372b6932ed5d7278bcdf2c3d6d206df0a01063ca.tar.gz
ENH: fix error in if statement
Diffstat (limited to 'Tests/SimpleInstallS2')
-rw-r--r--Tests/SimpleInstallS2/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/SimpleInstallS2/CMakeLists.txt b/Tests/SimpleInstallS2/CMakeLists.txt
index 05808a356d..4df7f77cdd 100644
--- a/Tests/SimpleInstallS2/CMakeLists.txt
+++ b/Tests/SimpleInstallS2/CMakeLists.txt
@@ -201,7 +201,7 @@ IF(UNIX AND NOT APPLE)
else(NOT SKIP_TZ)
message("compress found, but it was a script so dont use it")
message("output from file command: [${output}]")
- endif(NOT "${output}" MATCHES "script")
+ endif(NOT SKIP_TZ)
ENDIF(found_compress)
FIND_PROGRAM(found_bz2
NAMES bzip2)