From 5674d223d6d9ccb65f53165cfa4b27a704bcfc71 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt <burchardt@igpm.rwth-aachen.de> Date: Mon, 20 Apr 2015 15:38:17 +0200 Subject: [PATCH] FindPTScotch.cmake: Fix typos. (cherry picked from commit d22ed390d0cb5b4e5653e5768c787e7e28a43e81) --- cmake/modules/FindPTScotch.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/modules/FindPTScotch.cmake b/cmake/modules/FindPTScotch.cmake index 6a0436d31..9b2cfb448 100644 --- a/cmake/modules/FindPTScotch.cmake +++ b/cmake/modules/FindPTScotch.cmake @@ -4,10 +4,10 @@ # # PTSCOTCH_ROOT: Prefix where PT-Scotch is installed. # 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 # are search under the suffix -# include/scotch-${PTSCOTCH_SUFFIX, and +# include/scotch-${PTSCOTCH_SUFFIX}, and # lib/scotch-${PTSCOTCH_SUFFIX}, respectively. # Sets the following variables: # PTSCOTCH_INCLUDE_DIRS: All include directories needed to compile PT-Scotch programs. @@ -21,7 +21,7 @@ include(DuneMPI) macro(_search_pt_lib libvar libname doc) find_library(${libvar} ${libname} - PATHS${PTSCOTCH_ROOT} PATH_SUFFIXES ${PATH_SUFFIXES} + PATHS ${PTSCOTCH_ROOT} PATH_SUFFIXES ${PATH_SUFFIXES} NO_DEFAULT_PATH DOC "${doc}") find_library(${libvar} ${libname}) -- GitLab