El 01.05.2017 a las 17:57, Uwe Stöhr escribió:

Wohoo, I finally found the problem:
- the file config.h is created by CMake
- in its line number 33 there is:
  #define PACKAGE "LyX"
- if I change it manyually to
  #define PACKAGE "LyX2.3"

I get what I need.

the bug is in CmakeLists.txt line 465 ff:

if(LYX_PROGRAM_SUFFIX)
        set(PACKAGE ${PACKAGE_BASE}${LYX_INSTALL_SUFFIX})
else()
        set(PACKAGE ${PACKAGE_BASE})
endif()

It must be (as it is in the 2.2.x branch)

if(LYX_PACKAGE_SUFFIX)
        set(PACKAGE ${PACKAGE_BASE}${LYX_INSTALL_SUFFIX})
else()
        set(PACKAGE ${PACKAGE_BASE})
endif()

regards Uwe

Reply via email to