mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Cmake build: Remove debug message
This commit is contained in:
parent
cf980435b1
commit
79d84fad0e
@ -337,11 +337,9 @@ endif()
|
||||
macro(setstripped _varname)
|
||||
if(${ARGC} GREATER 1)
|
||||
string(STRIP "${ARGV1}" _v)
|
||||
message(STATUS "1. _v = ${_varname} ${_v}")
|
||||
if (_v MATCHES "^\\[\(.+\)\\]$")
|
||||
set(_v ${CMAKE_MATCH_1})
|
||||
endif()
|
||||
message(STATUS "2. _v = ${_v}")
|
||||
if(USE_POSIX_PACKAGING)
|
||||
string(TOLOWER ${_v} ${_varname})
|
||||
else()
|
||||
@ -354,6 +352,8 @@ endmacro(setstripped)
|
||||
|
||||
foreach(_c_l ${_config_lines} )
|
||||
if(_c_l MATCHES "^AC_INIT\\(\([^,]+\),\([^,]+\), *\\[\([^,]+\)\\] *,\(.*\)")
|
||||
# Not using CMAKE_MATCH_ directly is needed, because
|
||||
# its value is now changed inside macro setstripped
|
||||
set(_PB ${CMAKE_MATCH_1})
|
||||
set(_PV ${CMAKE_MATCH_2})
|
||||
set(_PBU ${CMAKE_MATCH_3})
|
||||
|
Loading…
Reference in New Issue
Block a user