[Title] Fixed a bug that resolving conflict using remote server doest not work
authordonghee yang <donghee.yang@samsung.com>
Fri, 7 Sep 2012 19:44:22 +0000 (04:44 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Fri, 7 Sep 2012 19:44:22 +0000 (04:44 +0900)
package/build.macos
package/build.windows
package/pkginfo.manifest
src/build_server/BuildJob.rb

index 1f91da989da5840642c6f063d683728fe038543b..05ef573ae3de9945bb1f510a051e800e1dfee693 100755 (executable)
@@ -16,7 +16,7 @@ build()
 install() 
 {
        BIN_DIR=$SRCDIR/package/dibs.package.${TARGET_OS}/data/tools/dibs/
-       DOC_DIR=$SRCDIR/package/dibs.package.${TARGET_OS}/data/tools/dibs/doc
+       DOC_DIR=$SRCDIR/package/dibs.package.${TARGET_OS}/data/documents
        mkdir -p $BIN_DIR
        mkdir -p $DOC_DIR
        cp -f $SRCDIR/pkg-* $BIN_DIR/
index 1f91da989da5840642c6f063d683728fe038543b..05ef573ae3de9945bb1f510a051e800e1dfee693 100755 (executable)
@@ -16,7 +16,7 @@ build()
 install() 
 {
        BIN_DIR=$SRCDIR/package/dibs.package.${TARGET_OS}/data/tools/dibs/
-       DOC_DIR=$SRCDIR/package/dibs.package.${TARGET_OS}/data/tools/dibs/doc
+       DOC_DIR=$SRCDIR/package/dibs.package.${TARGET_OS}/data/documents
        mkdir -p $BIN_DIR
        mkdir -p $DOC_DIR
        cp -f $SRCDIR/pkg-* $BIN_DIR/
index fee0bcecb37c0628107c1c2872d348e5777cad8f..b79d956ae2fdc159d7cdf3f72f2a742b2cac84da 100644 (file)
@@ -1,13 +1,8 @@
 Source : dibs
-Version :1.0.4
+Version :1.0.5
 Maintainer : taejun ha<taejun.ha@samsung.com>, jiil hyoun <jiil.hyoun@samsung.com>, donghyuk yang <donghyouk.yang@samsung.com>, donghee yang <donghee.yang@samsung.com>, sungmin kim <dev.sungmin.kim@samsung.com
 
 Package : dibs
-OS : ubuntu-32, windows-32, windows-64, macos-64
+OS : ubuntu-32, ubuntu-64, windows-32, windows-64, macos-64
 Build-host-os : ubuntu-32
 Description : Distribute Inteligent Build System
-
-Package : dibs
-OS : ubuntu-64
-Build-host-os : ubuntu-64
-Description : Distribute Inteligent Build System
index f6a99b6ccaeef8cd83df6b2fefd8cb427dcee137..223d752950606b4958f3194688c1b6a1749405f4 100644 (file)
@@ -902,7 +902,7 @@ class BuildJob
                # build 
                if @is_remote_job then
                        result = builder.build(@project.repository, @source_path, @os, 
-                               false, @git_commit, [])
+                               false, @git_commit, @no_reverse, [])
                else
                result =  builder.build(@source_path, @os, true, [], false )
                end
@@ -1002,7 +1002,7 @@ class BuildJob
                # build
                if @is_remote_job then
                        result = builder.build(@project.repository, @source_path, @os,
-                               false, @git_commit,  local_pkgs)
+                               false, @git_commit, @no_reverse, local_pkgs)
                else
                        result = builder.build(@source_path, @os, true, local_pkgs, false )
                end