summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-01-31 17:32:36 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-01-31 17:32:36 +0000
commitf1352fdacd1db813eb9e44d427d8711e327eeb24 (patch)
tree4ae7e65b0b2cc843a07c5746e4d21c7cefd4d681 /cmake
parent9c45241485c0a1dc6f4ae81440185b54ec118246 (diff)
downloadllvm-f1352fdacd1db813eb9e44d427d8711e327eeb24.tar.gz
llvm-f1352fdacd1db813eb9e44d427d8711e327eeb24.tar.bz2
llvm-f1352fdacd1db813eb9e44d427d8711e327eeb24.tar.xz
HandleLLVMOptions.cmake: Typo, s/proerty/property/
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/HandleLLVMOptions.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/modules/HandleLLVMOptions.cmake b/cmake/modules/HandleLLVMOptions.cmake
index e3c99254ac..47d3b2f79d 100644
--- a/cmake/modules/HandleLLVMOptions.cmake
+++ b/cmake/modules/HandleLLVMOptions.cmake
@@ -362,7 +362,8 @@ endif()
if(MSVC)
# Remove flags here, for exceptions and RTTI.
- # Each target property or source proerty should be responsible to control them.
+ # Each target property or source property should be responsible to control
+ # them.
# CL.EXE complains to override flags like "/GR /GR-".
string(REGEX REPLACE "(^| ) */EH[-cs]+ *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
string(REGEX REPLACE "(^| ) */GR-? *( |$)" "\\1 \\2" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")