https://bugs.kde.org/show_bug.cgi?id=379834

--- Comment #4 from Mauro Carvalho Chehab <mchehab+...@kernel.org> ---
(In reply to Wolfgang Bauer from comment #3)
> The actual problem is that ki18n_install(po) is called twice in the
> CMakeLists.txt:
> 
> if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po")
>   if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/po/CMakeLists.txt" )
>     add_subdirectory(po)
>   else()
>     ki18n_install(po) <--
>   endif()
> endif()
> 
> if(KF5DocTools_VERSION)
>   add_subdirectory(doc)
> endif(KF5DocTools_VERSION)
> 
> if(BUILD_TOOLS)
>   add_subdirectory(tools)
> endif(BUILD_TOOLS)
> find_package(KF5I18n CONFIG REQUIRED)
> ki18n_install(po) <--
> find_package(KF5DocTools CONFIG REQUIRED)
> kdoctools_install(po)
> 
> This is only the case in the released tarball though, not in the git repo.
> The last 4 lines are not there in git at all.

Unfortunately, create_tarball_kf5.rb script seems to be adding those
automatically:

$ diff -uprBw  kaffeine-git/CMakeLists.txt  kaffeine-2.0.10/CMakeLists.txt
--- ../../CMakeLists.txt        2017-06-29 16:27:33.770796976 -0300
+++ CMakeLists.txt      2017-06-29 16:29:38.000000000 -0300
@@ -113,3 +113,7 @@ endif(KF5DocTools_VERSION)
 if(BUILD_TOOLS)
   add_subdirectory(tools)
 endif(BUILD_TOOLS)
+find_package(KF5I18n CONFIG REQUIRED)
+ki18n_install(po)
+find_package(KF5DocTools CONFIG REQUIRED)
+kdoctools_install(po)

So, better to keep this patch at git, until either I discover what's wrong
locally or someone fixes the script.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to