From 8726a6d2ebd496780632daa554bc55eff50cdb86 Mon Sep 17 00:00:00 2001 From: SangYoun Kwak Date: Mon, 18 Nov 2024 11:56:02 +0900 Subject: [PATCH] Fix path of xml files to be removed The path of xml files to be removed when the profile is TV are miswritten, so they should be fixed. Change-Id: I5d054a8094c74b9acb70fe9e532bdb1922c92304 Signed-off-by: SangYoun Kwak --- packaging/hal-rootstrap-data-common.spec | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/packaging/hal-rootstrap-data-common.spec b/packaging/hal-rootstrap-data-common.spec index 102bc61..0cf6ae7 100644 --- a/packaging/hal-rootstrap-data-common.spec +++ b/packaging/hal-rootstrap-data-common.spec @@ -209,15 +209,14 @@ mkdir -p %{buildroot}/tmp ls -al cp -R ./rs_resource %{buildroot}/tmp %if "%{tizen_profile_name}" == "tv" || "%{mv_prj}" == "1" -rm -f %{buildroot}/tmp/common/OSS/baserpm/glibc-rs.xml -rm -f %{buildroot}/tmp/common/NativeAPI/capi-system-peripheral-io-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-bluetooth-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-location-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-power-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-radio-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-uwb-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-wifi-rs.xml -rm -f %{buildroot}/tmp/common/HAL/hal-api-zigbee-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/NativeAPI/capi-system-peripheral-io-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-bluetooth-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-location-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-power-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-radio-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-uwb-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-wifi-rs.xml +rm -f %{buildroot}/tmp/rs_resource/common/HAL/hal-api-zigbee-rs.xml %endif %files -- 2.34.1