Bump Standards to 3.9.7 Fix LXQtTranlateDesktop - just in case Fix year in copyrights fix grep usage in cmake/LXQtTranslateDesktop.cmake - just in caseubuntu/cosmic debian/0.10.0+20151214-3
parent
26b0945d5e
commit
d71a447819
@ -0,0 +1,22 @@
|
||||
Description: Fix grep usage in LXQtTranslateDesktop
|
||||
Author: Alf Gaida <agaida@siduction.org>
|
||||
|
||||
--- libfm-qt-0.10.0+20151214.orig/cmake/LXQtTranslateDesktop.cmake
|
||||
+++ libfm-qt-0.10.0+20151214/cmake/LXQtTranslateDesktop.cmake
|
||||
@@ -71,13 +71,13 @@ function(lxqt_translate_desktop _RESULT)
|
||||
set(_pattern "'\\[.*]\\s*='")
|
||||
if (_translations)
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
- COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
- COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
|
||||
+ COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
+ COMMAND grep -a -h ${_pattern} ${_translations} >> ${_outFile}
|
||||
COMMENT "Generating ${_fileName}${_fileExt}"
|
||||
)
|
||||
else()
|
||||
add_custom_command(OUTPUT ${_outFile}
|
||||
- COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
+ COMMAND grep -a -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
||||
COMMENT "Generating ${_fileName}${_fileExt}"
|
||||
)
|
||||
endif()
|
@ -0,0 +1 @@
|
||||
fix-grep-usage.patch
|
@ -1,7 +1,9 @@
|
||||
#!/usr/bin/make -f
|
||||
#DH_VERBOSE = 1
|
||||
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
%:
|
||||
dh ${@} --buildsystem cmake --parallel
|
||||
dh ${@} --buildsystem cmake \
|
||||
--parallel
|
||||
|
Loading…
Reference in new issue