summaryrefslogtreecommitdiffstats
path: root/CMakeScripts
diff options
context:
space:
mode:
authorUnknown <kunda@scribus.net>2017-11-07 18:55:26 +0000
committerUnknown <kunda@scribus.net>2017-11-07 18:55:26 +0000
commit2659ce5a325688a3db9900d6d662e92048f0539e (patch)
treef55a967bd07fcef78b1834ea9c21f6bd93b00cb0 /CMakeScripts
parentSet primitive filter area in feComposite and feMerge. Needed for tiling. (diff)
downloadinkscape-2659ce5a325688a3db9900d6d662e92048f0539e.tar.gz
inkscape-2659ce5a325688a3db9900d6d662e92048f0539e.zip
Misc. typos
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
Diffstat (limited to 'CMakeScripts')
-rw-r--r--CMakeScripts/HelperFunctions.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeScripts/HelperFunctions.cmake b/CMakeScripts/HelperFunctions.cmake
index a9d7e0ab1..b564f4ef6 100644
--- a/CMakeScripts/HelperFunctions.cmake
+++ b/CMakeScripts/HelperFunctions.cmake
@@ -33,7 +33,7 @@ endfunction()
-# Checks if the last call to execute_process() was sucessful and throws an error otherwise.
+# Checks if the last call to execute_process() was successful and throws an error otherwise.
# ${result} and ${stderr} should hold the value of RESULT_VARIABLE and ERROR_VARIABLE respectively
# ${command} can be empty or the command that was executed during the last call of execute_process()
function(check_error result stderr command)
@@ -49,7 +49,7 @@ function(check_error result stderr command)
if("${result}" STREQUAL 0)
if(NOT "${stderr}" STREQUAL "")
- MESSAGE(WARNING "${command} returned sucessfully but the following was output to stderr: ${stderr}")
+ MESSAGE(WARNING "${command} returned successfully but the following was output to stderr: ${stderr}")
endif()
else()
if("${stderr}" STREQUAL "")
@@ -133,7 +133,7 @@ endfunction(list_files_pip)
# ROOT - the root to search the files in (if file paths are relative)
# DESTINATION - the destination where to install files to
# INCLUDE - a (list of) regular expression(s) specifying which files to include
-# (omit or leave empty to inlcude all files)
+# (omit or leave empty to include all files)
# EXCLUDE - a (list of) regular expression(s) specifying which files to exclude
# (takes precedence over include rules)
function(install_list)