Skip to content

Commit fe0476a

Browse files
committed
Add missing quotes
1 parent 5f9586c commit fe0476a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/ProcessOptions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ endfunction()
385385
function( NEST_PROCESS_WITH_OPENMP )
386386
# Find OPENMP
387387
if ( NOT "${with-openmp}" STREQUAL "OFF" )
388-
if ( NOT ${with-openmp} STREQUAL "ON" )
388+
if ( NOT "${with-openmp}" STREQUAL "ON" )
389389
# if set, use this prefix
390390
set( OpenMP_ROOT "${with-openmp}" )
391391
endif ()

0 commit comments

Comments
 (0)