diff options
author | Brad King <brad.king@kitware.com> | 2014-12-18 09:56:52 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-18 11:08:55 -0500 |
commit | 44c6db6eb13b52683ad1b4ce49e6805cff076dfb (patch) | |
tree | f242dd0d11867a2b8ba05c631854ddcfef3fa496 /bootstrap | |
parent | c118816d44e178e4364a0c32aaece81a14511237 (diff) | |
download | cmake-44c6db6eb13b52683ad1b4ce49e6805cff076dfb.tar.gz |
bootstrap: Fix syntax for Solaris 10 shell (#15317)
In commit v3.1.0-rc2~7^2 (Workaround for short jump tables on PA-RISC,
2014-11-04) we added use of shell syntax not supported on the Solaris
shell. Avoid using the '!' operator.
Reported-by: Friedrich Haubensak <hsk@imb-jena.de>
Diffstat (limited to 'bootstrap')
-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 |