Skip to content
Snippets Groups Projects
Commit d22ed390 authored by Ansgar Burchardt's avatar Ansgar Burchardt Committed by Christoph Grüninger
Browse files

FindPTScotch.cmake: Fix typos.

parent a5d7774e
No related branches found
No related tags found
No related merge requests found
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
# #
# PTSCOTCH_ROOT: Prefix where PT-Scotch is installed. # PTSCOTCH_ROOT: Prefix where PT-Scotch is installed.
# PTSCOTCH_SUFFIX: Scotch might be compiled using different # PTSCOTCH_SUFFIX: Scotch might be compiled using different
# integer sizes (int32, int32, long). When # integer sizes (int32, int64, long). When
# this is is set the headers and libaries # this is is set the headers and libaries
# are search under the suffix # are search under the suffix
# include/scotch-${PTSCOTCH_SUFFIX, and # include/scotch-${PTSCOTCH_SUFFIX}, and
# lib/scotch-${PTSCOTCH_SUFFIX}, respectively. # lib/scotch-${PTSCOTCH_SUFFIX}, respectively.
# Sets the following variables: # Sets the following variables:
# PTSCOTCH_INCLUDE_DIRS: All include directories needed to compile PT-Scotch programs. # PTSCOTCH_INCLUDE_DIRS: All include directories needed to compile PT-Scotch programs.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
include(DuneMPI) include(DuneMPI)
macro(_search_pt_lib libvar libname doc) macro(_search_pt_lib libvar libname doc)
find_library(${libvar} ${libname} find_library(${libvar} ${libname}
PATHS${PTSCOTCH_ROOT} PATH_SUFFIXES ${PATH_SUFFIXES} PATHS ${PTSCOTCH_ROOT} PATH_SUFFIXES ${PATH_SUFFIXES}
NO_DEFAULT_PATH NO_DEFAULT_PATH
DOC "${doc}") DOC "${doc}")
find_library(${libvar} ${libname}) find_library(${libvar} ${libname})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment