From b005b3caa7be4de19ceda24bd8796ce0979e46bf Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sat, 8 Dec 2012 20:43:33 +0100 Subject: [PATCH] Fixed "silent" typo in last commit. --- runtime/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 62683642..ded66f76 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -281,7 +281,7 @@ macro(build_runtime d_flags c_flags ld_flags lib_suffix path_suffix) # segfaults during the GC marking phase, and other strange crashes. Until # a proper workaround is figured out, simply fall back to -O0. if(${LDC_LLVM_VER} LESS 302) - if ((${MULTILIB_SUFFIX} EQUALS 64) OR ("${rt_flags}" MATCHES "-m32")) + if ((${MULTILIB_SUFFIX} EQUAL 64) OR ("${rt_flags}" MATCHES "-m32")) string(REGEX REPLACE "-O[1-5]" "-O0" rt_flags "${rt_flags}") endif() endif()