From b79c6a9c29f7e2ee497da862e426b72eb589182c Mon Sep 17 00:00:00 2001 From: fengweihao Date: Tue, 19 Jun 2018 11:34:57 +0800 Subject: [PATCH] =?UTF-8?q?[Mofified]=201.=E4=BF=AE=E6=94=B9Makefile?= =?UTF-8?q?=EF=BC=8C=E6=9B=B4=E6=94=B9=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Makefile | 2 +- src/package/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index fbeab46..2404d2a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -69,7 +69,7 @@ tarball: cert_store if [ ! -d "package/etc" ]; then mkdir -p "package/etc"; fi cp cert_store package/bin/cert_store #cp ../lib/*.a package/lib/ - cp ../conf/cert_store.yaml package/etc/ + cp ../conf/cert_store.ini package/etc/ cd package && tar cpfz cert_store-$(BUILD_FINGERPRINT2).tar.gz bin etc lib Makefile cd .. mv package/cert_store-$(BUILD_FINGERPRINT2).tar.gz ../release/ diff --git a/src/package/Makefile b/src/package/Makefile index 42bcc06..b89c220 100644 --- a/src/package/Makefile +++ b/src/package/Makefile @@ -3,7 +3,7 @@ install: if [ ! -d "/usr/local/bin" ]; then mkdir -p "/usr/local/bin"; fi if [ ! -d "/usr/local/lib" ]; then mkdir -p "/usr/local/lib"; fi # - cp -f etc/cert_store.yaml /usr/local/etc/ + cp -f etc/cert_store.ini /usr/local/etc/ # cp -f bin/cert_store /usr/local/bin/ chmod +x /usr/local/bin/cert_store @@ -16,6 +16,6 @@ update: uninstall: rm -f /usr/local/bin/cert_store - rm -rf /usr/local/etc/cert_store.yaml + rm -rf /usr/local/etc/cert_store.ini