Skip to content

Commit

Permalink
Cpack fixes (netdata#17576)
Browse files Browse the repository at this point in the history
* Fix list joining

* Fix plugin apps typo
  • Loading branch information
vkalintiris authored May 2, 2024
1 parent 3b2957e commit 00199dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging/cmake/Modules/Packaging.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ list(APPEND _main_deps "netdata-plugin-chartsd (= ${CPACK_PACKAGE_VERSION})")
list(APPEND _main_deps "netdata-plugin-pythond (= ${CPACK_PACKAGE_VERSION})")

if(ENABLE_PLUGIN_APPS)
list(APPEND _main_deps "netdata-plguin-apps (= ${CPACK_PACKAGE_VERSION})")
list(APPEND _main_deps "netdata-plugin-apps (= ${CPACK_PACKAGE_VERSION})")
endif()

if(ENABLE_PLUGIN_GO)
Expand All @@ -96,7 +96,7 @@ if(ENABLE_PLUGIN_EBPF)
list(APPEND _main_deps "netdata-plugin-ebpf (= ${CPACK_PACKAGE_VERSION})")
endif()

list(JOIN "${_main_deps}" ", " CPACK_DEBIAN_NETDATA_PACKAGE_DEPENDS)
list(JOIN _main_deps ", " CPACK_DEBIAN_NETDATA_PACKAGE_DEPENDS)

set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
"${CMAKE_SOURCE_DIR}/packaging/cmake/control/netdata/conffiles;"
Expand Down

0 comments on commit 00199dc

Please sign in to comment.