From: Dongkyun Son Date: Tue, 17 Oct 2023 00:46:21 +0000 (+0900) Subject: convert script: fix architecture conversion error X-Git-Tag: accepted/tizen/unified/20240719.080553~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f765bbe37fd50faf3c72ddc440ec5d7f550c05a;p=platform%2Fhal%2Fbackend%2Frootstrap-data-common.git convert script: fix architecture conversion error - setup : noarch - linux-glibc-devel : armv7l | i686 | aarch64 | x86_64 Signed-off-by: Dongkyun Son --- diff --git a/script/convert32.sh b/script/convert32.sh index 6793dc5..6034dbd 100755 --- a/script/convert32.sh +++ b/script/convert32.sh @@ -2,7 +2,7 @@ # xml Converter git checkout ./rs_resource ./rs_resource_invisible -find ./ \( -name "*-rs.xml" ! -iname "kernel-headers-linux-rs.xml" \) \ +find ./ \( -name "*-rs.xml" ! -iname "setup-rs.xml" \) \ -exec xmlstarlet ed -L -u //rootstrap/emulator/rpm/@arch -v "i686" {} \; \ -exec xmlstarlet ed -L -u //rootstrap/target/rpm/@arch -v "armv7l" {} \; \ -exec xmlstarlet ed -L -u //rootstrap/library_path -v "/usr/lib" {} \; \ diff --git a/script/convert64.sh b/script/convert64.sh index 53f497d..5c2e512 100755 --- a/script/convert64.sh +++ b/script/convert64.sh @@ -2,7 +2,7 @@ # xml Converter git checkout ./rs_resource ./rs_resource_invisible -find ./ \( -name "*-rs.xml" ! -iname "kernel-headers-linux-rs.xml" \) \ +find ./ \( -name "*-rs.xml" ! -iname "setup-rs.xml" \) \ -exec xmlstarlet ed -L -u //rootstrap/emulator/rpm/@arch -v "x86_64" {} \; \ -exec xmlstarlet ed -L -u //rootstrap/target/rpm/@arch -v "aarch64" {} \; \ -exec xmlstarlet ed -L -u //rootstrap/library_path -v "/usr/lib64" {} \; \