Skip to content

Commit

Permalink
Fix misplaced comma
Browse files Browse the repository at this point in the history
  • Loading branch information
lawruble13 committed Feb 9, 2024
1 parent 89890a8 commit 8729a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions share/rocmcmakebuildtools/cmake/ROCMCreatePackage.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ macro(rocm_create_package)
endif()
if(PARSE_HEADER_ONLY)
if(DEFINED CPACK_DEBIAN_DEVEL_PACKAGE_PROVIDES)
rocm_join_if_set(", ",
rocm_join_if_set(", "
CPACK_DEBIAN_DEVEL_PACKAGE_PROVIDES
"${CPACK_PACKAGE_NAME} = ${CPACK_PACKAGE_VERSION}"
)
Expand All @@ -349,7 +349,7 @@ macro(rocm_create_package)
endif()

if(DEFINED CPACK_RPM_DEVEL_PACKAGE_PROVIDES)
rocm_join_if_set(", ",
rocm_join_if_set(", "
CPACK_RPM_DEVEL_PACKAGE_PROVIDES
"${CPACK_PACKAGE_NAME} = ${CPACK_PACKAGE_VERSION}"
)
Expand Down

0 comments on commit 8729a00

Please sign in to comment.