53 lines
1.9 KiB
Bash
53 lines
1.9 KiB
Bash
#!/bin/bash
|
|
# Copyright (c) Huawei Technologies Co., Ltd. 2010-2022. All rights reserved.
|
|
# description: the script that make install cjson
|
|
# date: 2020-08-10
|
|
# version: 2.0
|
|
# history:
|
|
# 2019-5-5 update to cjson 1.7.11 from 1.7.7
|
|
# 2019-12-28 fix buildcheck warning
|
|
# 2020-06-22 fix buildcheck warning
|
|
# 2020-08-10 update to cjson 1.7.13 from 1.7.11
|
|
|
|
set -e
|
|
|
|
##############################################################################################################
|
|
# dist the real files to the matched path
|
|
# we could makesure that $INSTALL_COMPOENT_PATH_NAME is not null, '.' or '/'
|
|
##############################################################################################################
|
|
function dist_component()
|
|
{
|
|
for COMPILE_TYPE in ${COMPLIE_TYPE_LIST}
|
|
do
|
|
case "${COMPILE_TYPE}" in
|
|
comm)
|
|
mkdir -p ${INSTALL_COMPOENT_PATH_NAME}/comm
|
|
rm -rf ${INSTALL_COMPOENT_PATH_NAME}/comm/*
|
|
cp -dr ${LOCAL_DIR}/install_comm_dist/* ${INSTALL_COMPOENT_PATH_NAME}/comm
|
|
if [ $? -ne 0 ]; then
|
|
die "[Error] \"cp -r ${LOCAL_DIR}/install_comm_dist/* ${INSTALL_COMPOENT_PATH_NAME}/comm\" failed."
|
|
fi
|
|
;;
|
|
llt)
|
|
mkdir -p ${INSTALL_COMPOENT_PATH_NAME}/llt
|
|
rm -rf ${INSTALL_COMPOENT_PATH_NAME}/llt/*
|
|
cp -dr ${LOCAL_DIR}/install_llt_dist/* ${INSTALL_COMPOENT_PATH_NAME}/llt
|
|
if [ $? -ne 0 ]; then
|
|
die "[Error] \"cp -r ${LOCAL_DIR}/install_llt_dist/* ${INSTALL_COMPOENT_PATH_NAME}/llt\" failed."
|
|
fi
|
|
;;
|
|
release)
|
|
;;
|
|
debug)
|
|
;;
|
|
release_llt)
|
|
;;
|
|
debug_llt)
|
|
;;
|
|
*)
|
|
esac
|
|
log "[Notice] cjson dist using \"${COMPILE_TYPE}\" has been finished!"
|
|
done
|
|
}
|
|
|