1
1

fix bash comparison to work as expected

cmr=v1.7.4:reviewer=ompi-gk1.7

This commit was SVN r29949.
Этот коммит содержится в:
Mike Dubman 2013-12-18 10:25:27 +00:00
родитель ab4636c47b
Коммит da5c55342f

Просмотреть файл

@ -14,7 +14,9 @@ with_devel_headers=yes
with_oshmem=yes
mellanox_autodetect=${mellanox_autodetect:="no"}
if [ $mellanox_autodetect="yes" ]; then
if [ "$mellanox_autodetect" == "yes" ]; then
mxm_dir=${mxm_dir:="$(pkg-config --variable=prefix mxm)"}
if [ -d $mxm_dir ]; then
with_mxm=$mxm_dir
@ -40,6 +42,7 @@ if [ $mellanox_autodetect="yes" ]; then
with_slurm=$slurm_dir
with_pmi=$slurm_dir
fi
fi
CXXFLAGS="-O3"