diff options
author | Slávek Banko <[email protected]> | 2021-01-25 20:41:17 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-01-25 21:40:41 +0100 |
commit | 1686d0e64eefa5f4036dce1800d666c41b0b5e5a (patch) | |
tree | 3643a9001dbd79a8231eb2b702cbd356aaa29b60 /modules | |
parent | a5baa2c1ab82309a59ba67db8fd0530f097fd36e (diff) | |
download | tde-cmake-1686d0e64eefa5f4036dce1800d666c41b0b5e5a.tar.gz tde-cmake-1686d0e64eefa5f4036dce1800d666c41b0b5e5a.zip |
tde_create_translated_desktop: Instead of preprocessing the desktop
file for use with intltool-merge already in the configuration phase,
prepare the file during the custom command call just before calling
intltool-merge. This will allow the natural use of the macro with
the generated files.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/TDEMacros.cmake | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/TDEMacros.cmake b/modules/TDEMacros.cmake index 913c854..6215f9f 100644 --- a/modules/TDEMacros.cmake +++ b/modules/TDEMacros.cmake @@ -2017,15 +2017,14 @@ macro( tde_create_translated_desktop ) else( ) - # create template for intltool-merge - file( READ ${_src} _src_data ) + # prepare keywords for intltool string( REPLACE ";" "|" _keywords_match "(${_keywords_desktop})" ) - string( REGEX REPLACE "(^|\n)${_keywords_match}[ ]*=[ ]*" "\\1_\\2=" _src_data "${_src_data}" ) - file( WRITE ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.in "${_src_data}" ) # merge translations command + get_filename_component( _src ${_src} ABSOLUTE ) add_custom_command( OUTPUT ${_basename}${_binsuffix} + COMMAND ${PERL_EXECUTABLE} -p -e "'s/^${_keywords_match}[ ]*=[ ]*/_\\1=/'" < ${_src} > ${_basename}.in COMMAND ${PERL_EXECUTABLE} ${INTLTOOL_MERGE_EXECUTABLE} -q -d ${_po_dir} ${_basename}.in ${_basename}${_binsuffix} DEPENDS ${_src} COMMENT "Merging translations into ${_sourcename}" |