diff options
author | SangYoun Kwak <sy.kwak@samsung.com> | 2024-11-18 11:56:02 +0900 |
---|---|---|
committer | SangYoun Kwak <sy.kwak@samsung.com> | 2024-11-18 15:28:33 +0900 |
commit | 8726a6d2ebd496780632daa554bc55eff50cdb86 (patch) | |
tree | 9c745d05fc043edf2099a1ea7020ccb01fe26b8f | |
parent | 74314b249d46e7aadc6a23f0a2e4079cd0d23d5f (diff) | |
download | rootstrap-data-common-8726a6d2ebd496780632daa554bc55eff50cdb86.tar.gz rootstrap-data-common-8726a6d2ebd496780632daa554bc55eff50cdb86.tar.bz2 rootstrap-data-common-8726a6d2ebd496780632daa554bc55eff50cdb86.zip |
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 <sy.kwak@samsung.com>
-rw-r--r-- | packaging/hal-rootstrap-data-common.spec | 17 |
1 files 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 |