|
From: <kin...@us...> - 2025-09-10 02:09:30
|
Revision: 7393
http://sourceforge.net/p/teem/code/7393
Author: kindlmann
Date: 2025-09-10 02:09:26 +0000 (Wed, 10 Sep 2025)
Log Message:
-----------
fewer apostrophes
Modified Paths:
--------------
teem/trunk/CMake/CheckLibM.cmake
Modified: teem/trunk/CMake/CheckLibM.cmake
===================================================================
--- teem/trunk/CMake/CheckLibM.cmake 2025-09-10 02:06:04 UTC (rev 7392)
+++ teem/trunk/CMake/CheckLibM.cmake 2025-09-10 02:09:26 UTC (rev 7393)
@@ -132,7 +132,7 @@
if(_checklibm_no_libm_ok)
# ... and either it did work without `-lm`, or ...
set(LIBM_NEEDED FALSE CACHE BOOL ${_lmn_desc})
- message(STATUS "CheckLibM: don't need -lm when linking with math-using ${_lib_type} lib")
+ message(STATUS "CheckLibM: No, do NOT need -lm when linking with math-using ${_lib_type} lib")
else()
# ... it did not work without -lm.
# Does it does work *with* -lm?
@@ -141,7 +141,7 @@
if(_checklibm_with_libm_ok)
# Yes, it does work with -lm.
set(LIBM_NEEDED TRUE CACHE BOOL "${_lmn_desc}")
- message(STATUS "CheckLibM: yes, do need -lm when linking with math-using ${_lib_type} lib")
+ message(STATUS "CheckLibM: yes, DO need -lm when linking with math-using ${_lib_type} lib")
else()
# Yikes, it failed both without and with -lm. Bye.
message(FATAL_ERROR
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|