summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeVerifyManifest.cmake
diff options
context:
space:
mode:
authorFelix Geyer <fgeyer@debian.org>2016-03-29 18:24:20 (GMT)
committerBrad King <brad.king@kitware.com>2016-03-29 18:31:02 (GMT)
commit49e82c15d57db01a95f740f511715064a3887615 (patch)
tree8c03b2bd20b20248d7ab61531aacde3667e7b485 /Modules/CMakeVerifyManifest.cmake
parent90f24f016e93d18f6a244b39fd21c68355bdbe48 (diff)
downloadCMake-49e82c15d57db01a95f740f511715064a3887615.zip
CMake-49e82c15d57db01a95f740f511715064a3887615.tar.gz
CMake-49e82c15d57db01a95f740f511715064a3887615.tar.bz2
Fix spelling typos in comments and documentation (#16037)
The Debian package checker tool (lintian) detected several typos in CMake.
Diffstat (limited to 'Modules/CMakeVerifyManifest.cmake')
-rw-r--r--Modules/CMakeVerifyManifest.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/CMakeVerifyManifest.cmake b/Modules/CMakeVerifyManifest.cmake
index bff4e1e..a54b9d2 100644
--- a/Modules/CMakeVerifyManifest.cmake
+++ b/Modules/CMakeVerifyManifest.cmake
@@ -6,18 +6,18 @@
#
# CMakeVerifyManifest.cmake
#
-# This script is used to verify that embeded manifests and side by side
+# This script is used to verify that embedded manifests and side by side
# manifests for a project match. To run this script, cd to a directory
# and run the script with cmake -P. On the command line you can pass in
# versions that are OK even if not found in the .manifest files. For
# example, cmake -Dallow_versions=8.0.50608.0
-# -PCmakeVerifyManifest.cmake could be used to allow an embeded manifest
+# -PCmakeVerifyManifest.cmake could be used to allow an embedded manifest
# of 8.0.50608.0 to be used in a project even if that version was not
# found in the .manifest file.
# This script first recursively globs *.manifest files from
# the current directory. Then globs *.exe and *.dll. Each
-# .exe and .dll is scanned for embeded manifests and the versions
+# .exe and .dll is scanned for embedded manifests and the versions
# of CRT are compared to those found in the .manifest files
# from the first glob.
@@ -54,7 +54,7 @@ function(crt_version file list_var)
endif()
endforeach()
if(NOT DEFINED has_match)
- message("Information: no embeded manifest in: ${file}")
+ message("Information: no embedded manifest in: ${file}")
return()
endif()
list(APPEND version_list ${${list_var}})