From 8fc7e42815777fb50067b773b634eb2cd40f880d Mon Sep 17 00:00:00 2001 From: Taeyoung Son Date: Wed, 16 Apr 2014 11:43:19 +0900 Subject: [PATCH] MISC: Modified build script. Modified build script. Change-Id: I711403741d5ce38131bc01fca20d88484da8bc9a Signed-off-by: Taeyoung Son --- package/changelog | 16 ++++++++++++++-- package/pkginfo.manifest | 2 +- script/build.sh | 26 ++++++++++++++++++++++++-- 3 files changed, 39 insertions(+), 5 deletions(-) diff --git a/package/changelog b/package/changelog index a4de7f1..0d5c474 100644 --- a/package/changelog +++ b/package/changelog @@ -1,9 +1,21 @@ +* 2.1.3 +- Removed __copy_dependency_plugins in build.sh +== kh5325.kim 2013-12-30 +* 2.1.2 +- Supports build case using indigo-pde +== kh5325.kim 2013-12-27 * 2.1.1 -- Merged the latest changes -== kh5325.kim 2013-05-24 +- Supports build case using indigo-pde +== kh5325.kim 2013-12-27 * 2.1.0 - 2.1.0 Package == kh5325.kim 2013-03-08 +* 1.0.71 +- build test +== taeyoung2.son 2012-12-24 18:00 +* 1.0.70 +- build test +== Taeyoung Son 2012-11-04 22:38 * 1.0.69 - Fixed bug when branding plugin is not set. == taeyoung2.son 2012-10-18 23:26 diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index 06fc438..0c1bc0d 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,4 +1,4 @@ -Version:2.1.1 +Version:2.1.3 Source:pde-build Maintainer:kangho kim , yoonki park , hyunsik non , taeyoung son , gune Kim , ho namkoong , hyeongseok heo , gyeongseok seo , jihoon song , changhyun lee , bonyong lee diff --git a/script/build.sh b/script/build.sh index f897f03..624a8fa 100755 --- a/script/build.sh +++ b/script/build.sh @@ -2,6 +2,7 @@ build_path=${SRCDIR}/build_result package_name=$1 +pde_name=$2 __set_parameter() { @@ -16,26 +17,46 @@ __set_parameter() archive_platform_name=linux windowing=gtk architecture=x86 + if [ ! "x${pde_name}" = "x" ] + then + ide_root_path_name=indigo-pde/eclipse + fi ;; windows-32) archive_platform_name=win32 windowing=win32 architecture=x86 + if [ ! "x${pde_name}" = "x" ] + then + ide_root_path_name=indigo-winpde/eclipse + fi ;; ubuntu-64) archive_platform_name=linux windowing=gtk architecture=x86_64 + if [ ! "x${pde_name}" = "x" ] + then + ide_root_path_name=indigo-pde/eclipse + fi ;; windows-64) archive_platform_name=win32 windowing=win32 architecture=x86_64 + if [ ! "x${pde_name}" = "x" ] + then + ide_root_path_name=indigo-winpde/eclipse + fi ;; macos-64) archive_platform_name=macosx windowing=cocoa architecture=x86_64 + if [ ! "x${pde_name}" = "x" ] + then + ide_root_path_name=indigo-macpde/eclipse + fi ;; *) echo "${TARGET_OS} is not support yet." @@ -48,8 +69,9 @@ __set_parameter() __set_build_parameter() { build_script_path=${ROOTDIR}/pde-build - reference_ide_path=${ROOTDIR}/ide + reference_ide_path=${ROOTDIR}/${ide_root_path_name} } + __clean_build_environment() { if [ -d $build_path ] @@ -213,7 +235,7 @@ build_plugins() __set_build_parameter __clean_build_environment __copy_build_sources - __copy_dependency_plugins + #__copy_dependency_plugins __make_ant_build_properties_file __modify_about_mappings_file __execute_pde_build -- 2.7.4