From 0d425bea11c2e0e5211054a141bed5fd791e7112 Mon Sep 17 00:00:00 2001 From: raramakr <91213141+raramakr@users.noreply.github.com> Date: Mon, 1 Jul 2024 12:05:43 -0700 Subject: [PATCH] SWDEV-470979 - Remove apostrophe from the package description text (#406) While creating wheel package, the rpm tags are read from the rpm package. The apostrophe in the package description is causing syntax error while parsing the description tag. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5af06f0..242b6afa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,7 @@ set(CPACK_RPM_PACKAGE_LICENSE "MIT") rocm_create_package( NAME rocwmma - DESCRIPTION "AMD's C++ library for facilitating GEMM, or GEMM-like 2D matrix multiplications on GPU leveraging MFMA instructions executing on matrix cores." + DESCRIPTION "AMD C++ library for facilitating GEMM, or GEMM-like 2D matrix multiplications on GPU leveraging MFMA instructions executing on matrix cores." MAINTAINER "rocWMMA Maintainer " HEADER_ONLY )