Skip to content

Commit 1a2af59

Browse files
committed
fix bc logic typo
1 parent a513966 commit 1a2af59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/build_conduit/build_conduit.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ fi
760760
echo "**** Configuring H5Z-ZFP ${h5zzfp_version}"
761761

762762
# depending on the system zfp may use lib or lib64 pattern:
763-
if [ ! -d ${zfp_install_dir}/lib64/cmake/zfp/ ]; then
763+
if [ -d ${zfp_install_dir}/lib64/cmake/zfp/ ]; then
764764
zfp_cmake_dir=${zfp_install_dir}/lib64/cmake/zfp/
765765
else
766766
zfp_cmake_dir=${zfp_install_dir}/lib/cmake/zfp/

0 commit comments

Comments
 (0)