[Title] Fixed a bug about external dependent package path
authordonghee yang <donghee.yang@samsung.com>
Wed, 13 Mar 2013 22:54:47 +0000 (07:54 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Wed, 13 Mar 2013 22:54:47 +0000 (07:54 +0900)
package/changelog
package/pkginfo.manifest
src/build_server/BuildJob.rb

index 84549d1c97b779d86a887bbe77a42df740d497eb..ac5f909d7634fbeb7462945220cda8e7608b57b6 100644 (file)
@@ -1,3 +1,6 @@
+* 2.1.1
+- Fixed a bug about setting external dependent package path
+== donghee yang <donghee.yang@samsung.com> 2013-03-14
 * 2.1.0
 - Version up
 == donghee yang <donghee.yang@samsung.com> 2013-03-12
index 872fef6fe0b243a55061274479a051fb00d705a8..999e0c7e984ee405787c9554d427e6087ea21f09 100644 (file)
@@ -1,5 +1,5 @@
 Source : dibs
-Version :2.1.0
+Version :2.1.1
 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
index 30a3892a6c31a8b612c7aeae503c70fc3b49aa9c..8d9c8e4d73600653295e903e2287253985d69e6f 100644 (file)
@@ -176,7 +176,7 @@ class BuildJob < CommonJob
 
        # add external packages to overwrite before build
        def add_external_package( file_name )
-               @external_pkgs.push "#{@job_root}/external_pkgs/#{file_name}"
+               @external_pkgs.push file_name
        end
 
 
@@ -791,7 +791,9 @@ class BuildJob < CommonJob
                # if sub job, install dependent packages of parent-pkgs and not clean
                use_clean = true
                local_pkgs = []
-               local_pkgs += @external_pkgs
+               @external_pkgs.each do |p|
+                       local_pkgs.push "#{@job_root}/external_pkgs/#{p}"
+               end
                if not @parent.nil? then
                        use_clean = false
                        # get local packages to install