diff options
author | luzpaz <kunda@scribus.net> | 2017-11-02 23:14:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-11-03 14:25:05 (GMT) |
commit | 777e87ae00e8920bd6bf971fb40a07e373061500 (patch) | |
tree | 296a44ff286a02bfb36d196b1ee82402e1502803 /Modules/FindJNI.cmake | |
parent | d802f357d79244ed6d1e3e796162730aabb11205 (diff) | |
download | CMake-777e87ae00e8920bd6bf971fb40a07e373061500.zip CMake-777e87ae00e8920bd6bf971fb40a07e373061500.tar.gz CMake-777e87ae00e8920bd6bf971fb40a07e373061500.tar.bz2 |
Fix trivial typos in text
Some are user facing.
Found using
codespell -q 3 --skip="./Utilities" -I .cmake-whitelist.txt`
whereby the whitelist contained:
ans
dum
helpfull
emmited
emmitted
buil
iff
isnt
nto
ot
pathes
substract
te
todays
upto
whitespaces
Diffstat (limited to 'Modules/FindJNI.cmake')
-rw-r--r-- | Modules/FindJNI.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindJNI.cmake b/Modules/FindJNI.cmake index cebba10..96e3e21 100644 --- a/Modules/FindJNI.cmake +++ b/Modules/FindJNI.cmake @@ -25,7 +25,7 @@ # JAVA_INCLUDE_PATH2 = the include path to jni_md.h # JAVA_AWT_INCLUDE_PATH = the include path to jawt.h -# Expand {libarch} occurences to java_libarch subdirectory(-ies) and set ${_var} +# Expand {libarch} occurrences to java_libarch subdirectory(-ies) and set ${_var} macro(java_append_library_directories _var) # Determine java arch-specific library subdir # Mostly based on openjdk/jdk/make/common/shared/Platform.gmk as of openjdk @@ -46,7 +46,7 @@ macro(java_append_library_directories _var) set(_java_libarch "arm" "aarch32") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^mips") # mips* machines are bi-endian mostly so processor does not tell - # endianess of the underlying system. + # endianness of the underlying system. set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "mips" "mipsel" "mipseb" "mips64" "mips64el" "mipsn32" "mipsn32el") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64le") set(_java_libarch "ppc64" "ppc64le") |