[cmake] Fix typo in test/asan/CMakeLists.txt
Should be variable name instead of variable reference.
Differential D41214
[cmake] Fix typo in test/asan/CMakeLists.txt azharudd on Dec 13 2017, 5:37 PM. Authored by
Details [cmake] Fix typo in test/asan/CMakeLists.txt Should be variable name instead of variable reference.
Diff Detail
Event TimelineComment Actions The two should be equivalent unless CMAKE_SYSTEM_VERSION expands out to a value that's a variable name (which is unlikely, since it should be expanding out to a number), but this is cleaner and more consistent. Comment Actions Also, if the variable is unset, it messes up the if condition expression and causes a CMake error. |