From 87955f8551dc1aec7e2d56fbc8615c8a0b6c5c66 Mon Sep 17 00:00:00 2001 From: Pruthvi Madugundu Date: Wed, 11 Nov 2020 12:31:50 -0800 Subject: [PATCH] Fix for uninstallation problem of hsa-rocr-dev - /opt/rocm-xx/hsa/include directory wasnt deleted after debian package uninstallation - , Signed-off-by: Pruthvi Madugundu Change-Id: I213439d73f6533ff3a55e2b0071061d970cf56d4 --- runtime/hsa-runtime/DEBIAN/pre_remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/hsa-runtime/DEBIAN/pre_remove b/runtime/hsa-runtime/DEBIAN/pre_remove index 85fd5df6ed..c168ebc4f4 100644 --- a/runtime/hsa-runtime/DEBIAN/pre_remove +++ b/runtime/hsa-runtime/DEBIAN/pre_remove @@ -52,7 +52,7 @@ case "$1" in remove) rm_ldconfig # Workaround for CPACK directory symlink handling error. - rm -rf @CPACK_PACKAGING_INSTALL_PREFIX@/hsa/include/hsa + rm -rf @CPACK_PACKAGING_INSTALL_PREFIX@/hsa ;; purge) ;;