diff options
author | Mukunth A <a.mukunth@samsung.com> | 2020-06-18 14:07:38 +0530 |
---|---|---|
committer | Mukunth A <a.mukunth@samsung.com> | 2020-06-18 14:08:32 +0530 |
commit | b593a2481ba36cd8919c9885f65960153ea5037a (patch) | |
tree | b0d76d676b78ce8cd66caf179895f6fc83cc9f70 | |
parent | 59986b1b3ad1bff5d08b4da87cda30aea35fc9ea (diff) | |
download | edge-home-orchestration-service-b593a2481ba36cd8919c9885f65960153ea5037a.tar.gz edge-home-orchestration-service-b593a2481ba36cd8919c9885f65960153ea5037a.tar.bz2 edge-home-orchestration-service-b593a2481ba36cd8919c9885f65960153ea5037a.zip |
Update pre-build scriptsubmit/tizen/20200618.084926
Change-Id: Ic873e8ae3f15eece23395e56fff1420eae11e8c1
Signed-off-by: Mukunth A <a.mukunth@samsung.com>
-rwxr-xr-x | prebuild.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/prebuild.sh b/prebuild.sh index 9cad161..67f66a9 100755 --- a/prebuild.sh +++ b/prebuild.sh @@ -1,6 +1,7 @@ #! /bin/sh -if [ "${BUILD_ARCH}" = "i386" ]; then - cp lib/cert/x86/libsa-cert.so lib/cert -elif [ "${BUILD_ARCH}" = "armel" ]; then - cp lib/cert/arm/libsa-cert.so lib/cert +echo "===== ${BUILD_ARCH} ====" +if [ "${BUILD_ARCH}" = "armel" ] || [ "${BUILD_ARCH}" = "arm" ]; then + cp ${PROJ_PATH}/lib/cert/arm/libsa-cert.so lib/cert +else + cp ${PROJ_PATH}/lib/cert/x86/libsa-cert.so lib/cert fi |