From 42150531525504f605e8f614710183130e5e2be7 Mon Sep 17 00:00:00 2001 From: "Cheruvally, Aravindan" Date: Wed, 30 Apr 2025 18:56:11 -0400 Subject: [PATCH] Re Enable SWDEV-521313 Streamline Version Management (#10) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Revert "Revert "SWDEV-521313 - Streamline Version Management: Retain Only version-roc…"" This reverts commit c48c9dac804eeedc59a5e4a279bb17721cca67c6. [ROCm/rocm-core commit: de37842d6a87fc4218a4c4dd86b35ac0bf66e93a] --- projects/rocm-core/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/rocm-core/CMakeLists.txt b/projects/rocm-core/CMakeLists.txt index 34feaa55c9..699e8a719e 100644 --- a/projects/rocm-core/CMakeLists.txt +++ b/projects/rocm-core/CMakeLists.txt @@ -142,9 +142,9 @@ endif() #Add the libpatch version if available to the version file if( DEFINED VERSION_POINT ) - file ( WRITE "${CMAKE_CURRENT_BINARY_DIR}/version" "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}.${VERSION_POINT}-${BUILD_ID}\n" ) + file ( WRITE "${CMAKE_CURRENT_BINARY_DIR}/version" "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}.${VERSION_POINT}\n" ) else() - file ( WRITE "${CMAKE_CURRENT_BINARY_DIR}/version" "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${BUILD_ID}\n" ) + file ( WRITE "${CMAKE_CURRENT_BINARY_DIR}/version" "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}\n" ) endif() ## Support for Static and Shared Target Packaging