mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-14 22:45:10 +02:00
18 lines
845 B
Diff
18 lines
845 B
Diff
--- a/src/lib/KAccountsMacros.cmake
|
|
+++ b/src/lib/KAccountsMacros.cmake
|
|
@@ -1,5 +1,5 @@
|
|
function(kaccounts_add_provider provider_in_file)
|
|
- cmake_parse_arguments(PARSE_ARGV 2 KACCOUNTS_I18N "NO_INTLTOOL" "" "")
|
|
+ cmake_parse_arguments(PARSE_ARGV 1 KACCOUNTS_I18N "NO_INTLTOOL" "" "")
|
|
if (NOT IS_ABSOLUTE "${provider_in_file}")
|
|
set(provider_in_file ${CMAKE_CURRENT_SOURCE_DIR}/${provider_in_file})
|
|
endif()
|
|
@@ -25,7 +25,7 @@ function(kaccounts_add_provider provider
|
|
endfunction()
|
|
|
|
function(kaccounts_add_service service_file_in)
|
|
- cmake_parse_arguments(PARSE_ARGV 2 KACCOUNTS_I18N "NO_INTLTOOL" "" "")
|
|
+ cmake_parse_arguments(PARSE_ARGV 1 KACCOUNTS_I18N "NO_INTLTOOL" "" "")
|
|
if (NOT IS_ABSOLUTE "${service_file_in}")
|
|
set(service_file_in ${CMAKE_CURRENT_SOURCE_DIR}/${service_file_in})
|
|
endif()
|