summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-12-19 13:27:01 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-12-19 13:27:01 (GMT)
commit852242b60d09d505ea59dc4eaccc149df87ce7fc (patch)
treecbc556bfd246ebc1c860766ac655b16dda78683a
parentbf731becfacfcbc1512644c60a706d385850a2e1 (diff)
parent44c6db6eb13b52683ad1b4ce49e6805cff076dfb (diff)
downloadCMake-852242b60d09d505ea59dc4eaccc149df87ce7fc.zip
CMake-852242b60d09d505ea59dc4eaccc149df87ce7fc.tar.gz
CMake-852242b60d09d505ea59dc4eaccc149df87ce7fc.tar.bz2
Merge topic 'bootstrap-solaris'
44c6db6e bootstrap: Fix syntax for Solaris 10 shell (#15317)
-rwxr-xr-xbootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 94bed0e..fe051e1 100755
--- a/bootstrap
+++ b/bootstrap
@@ -145,7 +145,7 @@ if ${cmake_system_linux}; then
cmake_machine_parisc=true
fi
elif ${cmake_system_hpux}; then
- if !(uname -m | grep ia64 >/dev/null 2>&1); then
+ if uname -m | grep ia64 >/dev/null 2>&1; then : ; else
cmake_machine_parisc=true
fi
fi