diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2021-06-17 10:02:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 15:02:30 +0100 |
commit | fd88b756fc20dedea15a8a08c21e8f7af6612e4e (patch) | |
tree | 81faaface4f605d329848b0c9b7dae8c7dad5b7f /cmake/Anope.cmake | |
parent | 8d1bc95faf095984dcc39b4c51de5bc5051b9a12 (diff) |
Fix various spelling issues (#274).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
Diffstat (limited to 'cmake/Anope.cmake')
-rw-r--r-- | cmake/Anope.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/Anope.cmake b/cmake/Anope.cmake index f93384cc0..44b4ea3ba 100644 --- a/cmake/Anope.cmake +++ b/cmake/Anope.cmake @@ -160,7 +160,7 @@ macro(sort_list LIST) # For CMake 2.4.4 or better, this can be done automatically list(SORT ${LIST}) else(CMAKE244_OR_BETTER) - # For CMake 2.4.x before 2.4.4, we have to do this ourselves, firstly we'll create a teporary list + # For CMake 2.4.x before 2.4.4, we have to do this ourselves, firstly we'll create a temporary list set(NEW_LIST) # Iterate through the old list foreach(ITEM ${${LIST}}) @@ -497,7 +497,7 @@ endmacro(calculate_libraries) # check_functions(<source filename> <output variable set to TRUE on success>) # # This macro is used in most of the module (sub)directories to calculate the -# fcuntion dependencies for the given source file. +# function dependencies for the given source file. ############################################################################### macro(check_functions SRC SUCCESS) # Default to true |