[Title] Build server path for windows bug fix
authorhataejun <taejun.ha@samsung.com>
Sat, 8 Sep 2012 09:08:09 +0000 (18:08 +0900)
committerhataejun <taejun.ha@samsung.com>
Sat, 8 Sep 2012 09:08:09 +0000 (18:08 +0900)
[Type]
[Module]
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

package/pkginfo.manifest
src/builder/Builder.rb

index b79d956ae2fdc159d7cdf3f72f2a742b2cac84da..cf38c950db6228c8b802873b15e5de220e0a8bb4 100644 (file)
@@ -1,5 +1,5 @@
 Source : dibs
-Version :1.0.5
+Version :1.0.6
 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 844445c5aa44e6cdd14cee97065e5bbc0aa863e3..f0087fef4099e446f8745869f2ad2068e99e89f1 100644 (file)
@@ -355,14 +355,16 @@ class Builder
 
                # convert directory format when windows
                if Utils.is_windows_like_os( @host_os ) then
-                       src_path = Utils.get_unix_path( src_path )
+                       src_path2 = Utils.get_unix_path( src_path )
+               else
+                       src_path2 = src_path
                end
 
                env_def =
                        "BUILD_TARGET_OS=#{os} \
                         TARGET_OS=#{os} \
                         TARGET_OS_CATEGORY=#{os_category} \
-                        SRCDIR=\"#{src_path}\" \
+                        SRCDIR=\"#{src_path2}\" \
                         ROOTDIR=\"#{build_root_dir}\" \
                         VERSION=\"#{version}\" "