diff options
author | Brad King <brad.king@kitware.com> | 2014-12-19 13:27:01 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-12-19 13:27:01 (GMT) |
commit | 852242b60d09d505ea59dc4eaccc149df87ce7fc (patch) | |
tree | cbc556bfd246ebc1c860766ac655b16dda78683a | |
parent | bf731becfacfcbc1512644c60a706d385850a2e1 (diff) | |
parent | 44c6db6eb13b52683ad1b4ce49e6805cff076dfb (diff) | |
download | CMake-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-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |