From b0227e0d22a0c530d05634fcbf5ffef6c8407b1a Mon Sep 17 00:00:00 2001 From: winlin Date: Sat, 5 Oct 2019 20:46:44 +0800 Subject: [PATCH] Fix bug for package script --- trunk/scripts/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/scripts/install.sh b/trunk/scripts/install.sh index 2d725d8a5..3a1c6292a 100755 --- a/trunk/scripts/install.sh +++ b/trunk/scripts/install.sh @@ -69,6 +69,7 @@ ok_msg "copy core components" mkdir -p $install_root cp -r $work_dir/${INSTALL}/conf $install_root && cp -r $work_dir/${INSTALL}/etc $install_root && + cp -r $work_dir/${INSTALL}/usr $install_root && cp -r $work_dir/${INSTALL}/objs $install_root ) >>$log 2>&1 ret=$?; if [[ 0 -ne ${ret} ]]; then failed_msg "copy core components failed"; exit $ret; fi