From: Kitae Kim Date: Fri, 7 Dec 2012 01:32:14 +0000 (+0900) Subject: package: Modified build script files. X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~1308 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49b52a6f3f5d87899de09e5c02ec67366f4d8aff;p=sdk%2Femulator%2Fqemu.git package: Modified build script files. When qemu is built, the build script execute distclean before compiling. There is an issue about yagl device failure on x86 emulator. Signed-off-by: Kitae Kim --- diff --git a/package/build.macos-64 b/package/build.macos-64 index 7236d2bf74..a8dccf0e11 100755 --- a/package/build.macos-64 +++ b/package/build.macos-64 @@ -8,7 +8,7 @@ clean() if test -e "Makefile" then ./emulator_configure.sh - make clean + make distclean fi rm -rf $SRCDIR/*.zip rm -rf $SRCDIR/*.tar.gz @@ -30,7 +30,7 @@ prepare() build() { cd $SRCDIR/tizen/ -# ./emulator_configure.sh + ./emulator_configure.sh make all_dibs if [ $? -eq 0 ] then diff --git a/package/build.ubuntu-32 b/package/build.ubuntu-32 index dfed8090c8..5140098f24 100755 --- a/package/build.ubuntu-32 +++ b/package/build.ubuntu-32 @@ -8,7 +8,7 @@ clean() if test -e "Makefile" then ./emulator_configure.sh - make clean + make distclean fi rm -rf $SRCDIR/*.zip rm -rf $SRCDIR/*.tar.gz @@ -30,7 +30,7 @@ prepare() build() { cd $SRCDIR/tizen/ -# ./emulator_configure.sh arm + ./emulator_configure.sh arm make all_dibs if [ $? -eq 0 ] then diff --git a/package/build.ubuntu-64 b/package/build.ubuntu-64 index b88337a5e9..a0eb9019ac 100755 --- a/package/build.ubuntu-64 +++ b/package/build.ubuntu-64 @@ -8,7 +8,7 @@ clean() if test -e "Makefile" then ./emulator_configure.sh - make clean + make distclean fi rm -rf $SRCDIR/*.zip rm -rf $SRCDIR/*.tar.gz @@ -30,7 +30,7 @@ prepare() build() { cd $SRCDIR/tizen/ -# ./emulator_configure.sh + ./emulator_configure.sh make all_dibs if [ $? -eq 0 ] then diff --git a/package/build.windows-32 b/package/build.windows-32 index 8f96009ef0..4489b218d1 100755 --- a/package/build.windows-32 +++ b/package/build.windows-32 @@ -8,7 +8,7 @@ clean() if test -e "Makefile" then ./emulator_configure.sh -e "$BUILD_CFLAGS $BUILD_LDFLAGS" - make clean + make distclean fi rm -rf $SRCDIR/*.zip rm -rf $SRCDIR/*.tar.gz @@ -49,7 +49,7 @@ build() prepare cd $SRCDIR/tizen -# ./emulator_configure.sh "$BUILD_CFLAGS $BUILD_LDFLAGS" + ./emulator_configure.sh -e "$BUILD_CFLAGS $BUILD_LDFLAGS" make all_dibs if [ $? -eq 0 ] then diff --git a/package/changelog b/package/changelog index 822777f95b..d35d4d5b64 100644 --- a/package/changelog +++ b/package/changelog @@ -1,3 +1,6 @@ +* 1.4.18 +- Modified build script files. +== Kitae Kim 2012-12-07 * 1.4.17 - apply nine-patch == GiWoong Kim 2012-12-06 diff --git a/package/pkginfo.manifest b/package/pkginfo.manifest index e82170d7dd..0bec847551 100644 --- a/package/pkginfo.manifest +++ b/package/pkginfo.manifest @@ -1,4 +1,4 @@ -Version: 1.4.17 +Version: 1.4.18 Maintainer: Yeong-Kyoon Lee Source: emulator