summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-02-26 21:49:14 +0000
committerjulie <julielangou@users.noreply.github.com>2011-02-26 21:49:14 +0000
commit04c69903f0cd6df1542caf0d4b16b2d0a3a0b942 (patch)
treeeac9c9ab8795a4c6f1e2445874570a3d727e40c7
parent2bbd1ad6d595d9c1f6f0c4f7f115486d38ac920a (diff)
downloadlapack-04c69903f0cd6df1542caf0d4b16b2d0a3a0b942.tar.gz
lapack-04c69903f0cd6df1542caf0d4b16b2d0a3a0b942.tar.bz2
lapack-04c69903f0cd6df1542caf0d4b16b2d0a3a0b942.zip
Corrected a typo in the output message when setting optimization level
- Chuck Atkins (Kitware)
-rw-r--r--CMAKE/CheckLAPACKCompilerFlags.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMAKE/CheckLAPACKCompilerFlags.cmake b/CMAKE/CheckLAPACKCompilerFlags.cmake
index 4f2884c4..d22f824d 100644
--- a/CMAKE/CheckLAPACKCompilerFlags.cmake
+++ b/CMAKE/CheckLAPACKCompilerFlags.cmake
@@ -54,7 +54,7 @@ else()
endif()
if( "${CMAKE_Fortran_FLAGS_RELEASE}" MATCHES "O[3-9]" )
- message( STATUS "Reducing RELEASE optimization level from to O2" )
+ message( STATUS "Reducing RELEASE optimization level to O2" )
string( REGEX REPLACE "O[3-9]" "O2" CMAKE_Fortran_FLAGS_RELEASE
"${CMAKE_Fortran_FLAGS_RELEASE}" )
set( CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE}"