From 4e2d05ee5fe203744eda18f7d1caa21bd1b20a54 Mon Sep 17 00:00:00 2001 From: Kitae Kim Date: Tue, 31 Jul 2012 20:23:54 +0900 Subject: [PATCH] [Title] update package version and check compile errors while running dibs. [Type] enhancement [Module] emulator / dibs [Priority] major [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] --- package/build.macos-64 | 7 +++++++ package/build.ubuntu-32 | 7 +++++++ package/build.ubuntu-64 | 7 +++++++ package/build.windows-32 | 14 +++++++------- package/pkginfo.manifest | 2 +- 5 files changed, 29 insertions(+), 8 deletions(-) diff --git a/package/build.macos-64 b/package/build.macos-64 index 40856e0..52bc721 100755 --- a/package/build.macos-64 +++ b/package/build.macos-64 @@ -32,6 +32,13 @@ build() cd $SRCDIR/tizen/ # ./emulator_configure.sh make all_dibs + if [ $? -eq 0 ] + then + echo "build success" + else + echo "build failure" + exit 1 + fi } # install diff --git a/package/build.ubuntu-32 b/package/build.ubuntu-32 index 40856e0..25adf38 100755 --- a/package/build.ubuntu-32 +++ b/package/build.ubuntu-32 @@ -32,6 +32,13 @@ build() cd $SRCDIR/tizen/ # ./emulator_configure.sh make all_dibs + if [ $? -eq 0 ] + then + echo "build success" + else + echo "build failure" + exit 1 + fi } # install diff --git a/package/build.ubuntu-64 b/package/build.ubuntu-64 index 40856e0..52bc721 100755 --- a/package/build.ubuntu-64 +++ b/package/build.ubuntu-64 @@ -32,6 +32,13 @@ build() cd $SRCDIR/tizen/ # ./emulator_configure.sh make all_dibs + if [ $? -eq 0 ] + then + echo "build success" + else + echo "build failure" + exit 1 + fi } # install diff --git a/package/build.windows-32 b/package/build.windows-32 index 52a14ea..1e6444e 100755 --- a/package/build.windows-32 +++ b/package/build.windows-32 @@ -52,13 +52,13 @@ build() cd $SRCDIR/tizen # ./emulator_configure.sh "$BUILD_CFLAGS $BUILD_LDFLAGS" make all_dibs - if [ -f "../i386-softmmu/qemu-system-i386.exe" ] - then - echo "BUILD SUCCESS" - else - echo "BUILD FAIL!!!" - exit 1; - fi + if [ $? -eq 0 ] + then + echo "build success" + else + echo "build failure" + exit 1 + fi } # install diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index 62025b1..d6f3a25 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,4 +1,4 @@ -Version: 1.3.8 +Version: 1.3.9 Maintainer: Yeong-Kyoon Lee Source: emulator -- 2.7.4