From 583d357c62f4895537dbd9d91896598920204b9e Mon Sep 17 00:00:00 2001 From: N2614 Date: Thu, 30 May 2013 01:44:48 +0000 Subject: [PATCH] =?UTF-8?q?=E3=83=AA=E3=83=93=E3=82=B8=E3=83=A7=E3=83=B3?= =?UTF-8?q?=20751=20=E3=82=92=20trunk/ConsoleDataMigration=20=E3=81=8B?= =?UTF-8?q?=E3=82=89=E3=83=9E=E3=83=BC=E3=82=B8:=20=E3=83=93=E3=83=AB?= =?UTF-8?q?=E3=83=89=E3=82=B9=E3=82=AF=E3=83=AA=E3=83=97=E3=83=88=E3=82=92?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=20........?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-05-23%20-%20ctr.7z%20+%20svn_v1.068.zip/ctr/svn/ctr_Repair@752 385bec56-5757-e545-9c3a-d8741f4650f1 --- branches/1stNUP_for_2ndNUP/documents/Readme.txt | 2 +- branches/1stNUP_for_2ndNUP/sources/build.sh | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/branches/1stNUP_for_2ndNUP/documents/Readme.txt b/branches/1stNUP_for_2ndNUP/documents/Readme.txt index 5095a91..c29cc56 100644 --- a/branches/1stNUP_for_2ndNUP/documents/Readme.txt +++ b/branches/1stNUP_for_2ndNUP/documents/Readme.txt @@ -10,7 +10,7 @@ Horizon 2_3 branch r52121 + リリース用ビルドでは開発機・量産機でAES鍵を変えるため、 量産機用ビルドの場合 -./build.sh RELEASE +./build.sh PROD でビルドすること。 diff --git a/branches/1stNUP_for_2ndNUP/sources/build.sh b/branches/1stNUP_for_2ndNUP/sources/build.sh index a5b2096..b931659 100755 --- a/branches/1stNUP_for_2ndNUP/sources/build.sh +++ b/branches/1stNUP_for_2ndNUP/sources/build.sh @@ -6,7 +6,7 @@ # # 1. common/version.h を変更する # 2. 開発実機用ビルドは build.sh UNFIXEDKEY -# 製品実機用ビルドは build.sh RELEASE +# 製品実機用ビルドは build.sh PROD set -u set -e @@ -21,12 +21,12 @@ function getVersion } # フラグ判定 -releaseBuild=false; +prodBuild=false; unfixedKeyBuild=false for arg in $@ do - if [ "$arg" = 'RELEASE' ]; then - releaseBuild=true + if [ "$arg" = 'PROD' ]; then + prodBuild=true fi if [ "$arg" = 'UNFIXEDKEY' ]; then @@ -35,7 +35,7 @@ do done OPTION="" -if [ $releaseBuild == "true" ] ; then +if [ $prodBuild == "true" ] ; then getVersion BUILD_TYPE=release,development OPTION="PROD_BUILD=true $VERSION_STR" @@ -66,7 +66,7 @@ else fi #リリース用ビルドはツールのみ -if [ $releaseBuild ] || [ $unfixedKeyBuild ] ; then +if [ $prodBuild ] || [ $unfixedKeyBuild ] ; then exit fi