View | Details | Raw Unified | Return to bug 222770 | Differences between
and this patch

Collapse All | Expand All

(-)devel/leatherman/files/patch-cmake_leatherman.cmake.in (-1 / +19 lines)
Lines 1-4 Link Here
1
--- cmake/leatherman.cmake.in.orig	2017-08-25 18:32:21 UTC
1
--- cmake/leatherman.cmake.in.orig	2017-09-18 21:59:18 UTC
2
+++ cmake/leatherman.cmake.in
2
+++ cmake/leatherman.cmake.in
3
@@ -83,11 +83,6 @@ macro(leatherman_install)
3
@@ -83,11 +83,6 @@ macro(leatherman_install)
4
         RUNTIME DESTINATION bin
4
         RUNTIME DESTINATION bin
Lines 12-14 Link Here
12
 endmacro()
12
 endmacro()
13
 
13
 
14
 # Usage: add_cppcheck_dirs(dir1 dir2)
14
 # Usage: add_cppcheck_dirs(dir1 dir2)
15
@@ -215,7 +210,7 @@ macro(gettext_templates dir)
16
                 -P ${LEATHERMAN_CMAKE_DIR}/normalize_pot.cmake
17
             DEPENDS ${ALL_PROJECT_SOURCES})
18
 
19
-        add_custom_target(${PROJECT_NAME}.pot ALL DEPENDS ${lang_template})
20
+        add_custom_target(${PROJECT_NAME}_pot ALL DEPENDS ${lang_template})
21
 
22
         find_program(MSGINIT_EXE msginit)
23
         find_program(MSGMERGE_EXE msgmerge)
24
@@ -231,7 +226,7 @@ macro(gettext_templates dir)
25
                         -DMSGINIT_EXE=${MSGINIT_EXE}
26
                         -P ${LEATHERMAN_CMAKE_DIR}/generate_translations.cmake
27
                     DEPENDS ${lang_template})
28
-                add_custom_target(${PROJECT_NAME}-${lang}.pot ALL DEPENDS ${lang_file})
29
+                add_custom_target(${PROJECT_NAME}-${lang}_pot ALL DEPENDS ${lang_file})
30
             endforeach()
31
         endif()
32
     else()

Return to bug 222770