1.修改Make tarball生成安装包文件问题

2.修改函数名
This commit is contained in:
fengweihao
2018-08-22 14:03:27 +08:00
parent 2ad1b5c977
commit dca65c0d8c
2 changed files with 33 additions and 18 deletions

View File

@@ -71,8 +71,8 @@ tarball: cert_store
if [ ! -d "package/bin" ]; then mkdir -p "package/bin"; fi
if [ ! -d "package/lib" ]; then mkdir -p "package/lib"; fi
if [ ! -d "package/etc" ]; then mkdir -p "package/etc"; fi
cp cert_store package/bin/cert_store
#cp ../lib/*.a package/lib/
cp cert_store package/bin/certstore
cp lib/*.a package/lib/
cp ../conf/cert_store.ini package/etc/
cd package && tar cpfz cert_store-$(BUILD_FINGERPRINT2).tar.gz bin etc lib Makefile
cd ..