File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ cmake --install pocl/build
115115cmake --install pocl/build --component icd
116116
117117# try hand-writing the pocl.icd file in the case where pocl's CMake refused to
118- if [[ ! test -f /etc/OpenCL/vendors/pocl.icd ]] ; then
118+ if ! test -f /etc/OpenCL/vendors/pocl.icd ; then
119119 POCL_LIBRARY=$(
120120 find /usr/local/lib64 -type f -name 'libOpenCL.so.2.*'
121121 )
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ cmake --install pocl/build
7474cmake --install pocl/build --component icd
7575
7676# try hand-writing the pocl.icd file in the case where pocl's CMake refused to
77- if [[ ! test -f /etc/OpenCL/vendors/pocl.icd ]] ; then
77+ if ! test -f /etc/OpenCL/vendors/pocl.icd ; then
7878 POCL_LIBRARY=$(
7979 find /usr/local/lib64 -type f -name 'libOpenCL.so.2.*'
8080 )
You can’t perform that action at this time.
0 commit comments