@@ -57,15 +57,15 @@ def build_ruby_command(name, output, prefix, usr_dir, tmpdir, rubygems = nil)
57
57
build_command = [
58
58
# need to move libyaml/libffi to dirs we can see
59
59
"mv #{ usr_dir } /tmp" ,
60
- "./configure --disable-install-doc --prefix #{ prefix } " ,
60
+ "./configure --enable-load-relative -- disable-install-doc --prefix #{ prefix } " ,
61
61
"env CPATH=/tmp/#{ usr_dir } /include:\\ $CPATH CPPATH=/tmp/#{ usr_dir } /include:\\ $CPPATH LIBRARY_PATH=/tmp/#{ usr_dir } /lib:\\ $LIBRARY_PATH make" ,
62
62
"make install"
63
63
]
64
- build_command << "#{ prefix } /bin/ruby /tmp/#{ usr_dir } /rubygems-#{ rubygems } /setup.rb"
65
- build_command << "mv #{ prefix } /app/vendor/#{ name } " if name != output
64
+ build_command << "#{ prefix } /bin/ruby /tmp/#{ usr_dir } /rubygems-#{ rubygems } /setup.rb" if rubygems
65
+ build_command << "mv #{ prefix } /app/vendor/#{ output } " if prefix != "/app/vendor/ #{ output } "
66
66
build_command = build_command . join ( " && " )
67
67
68
- sh "vulcan build -v -o #{ output } .tgz --source #{ name } --command=\" #{ build_command } \" "
68
+ sh "vulcan build -v -o #{ output } .tgz --prefix #{ prefix } -- source #{ name } --command=\" #{ build_command } \" "
69
69
s3_upload ( tmpdir , output )
70
70
end
71
71
@@ -106,16 +106,17 @@ task "libyaml:install", :version do |t, args|
106
106
Dir . mktmpdir ( "libyaml-" ) do |tmpdir |
107
107
Dir . chdir ( tmpdir ) do |dir |
108
108
FileUtils . rm_rf ( "#{ tmpdir } /*" )
109
+ prefix = "/app/vendor/yaml-#{ version } "
109
110
110
111
sh "curl http://pyyaml.org/download/libyaml/yaml-#{ version } .tar.gz -s -o - | tar vzxf -"
111
112
112
113
build_command = [
113
- "env CFLAGS=-fPIC ./configure --enable-static --disable-shared --prefix=/app/vendor/yaml- #{ version } " ,
114
+ "env CFLAGS=-fPIC ./configure --enable-static --disable-shared --prefix=#{ prefix } " ,
114
115
"make" ,
115
116
"make install"
116
117
] . join ( " && " )
117
118
118
- sh "vulcan build -v -o #{ name } .tgz --source yaml-#{ version } --command=\" #{ build_command } \" "
119
+ sh "vulcan build -v -o #{ name } .tgz --source yaml-#{ version } --prefix= #{ prefix } -- command=\" #{ build_command } \" "
119
120
s3_upload ( tmpdir , name )
120
121
end
121
122
end
@@ -175,9 +176,11 @@ task "ruby:install", :version do |t, args|
175
176
build_ruby_command ( full_name , name , prefix , usr_dir , tmpdir , rubygems )
176
177
177
178
# build ruby
178
- output = "ruby-build-#{ version } "
179
- prefix = "/tmp/#{ name } "
180
- build_ruby_command ( full_name , output , prefix , usr_dir , tmpdir , rubygems )
179
+ if major_ruby == "1.8"
180
+ output = "ruby-build-#{ version } "
181
+ prefix = "/app/vendor/ruby-build-#{ version } "
182
+ build_ruby_command ( full_name , output , prefix , usr_dir , tmpdir , rubygems )
183
+ end
181
184
end
182
185
end
183
186
end
@@ -246,7 +249,6 @@ task "jruby:install", :version, :ruby_version do |t, args|
246
249
launcher = "launcher"
247
250
248
251
Dir . mktmpdir ( "jruby-" ) do |tmpdir |
249
- tmpdir = Dir . mktmpdir ( "jruby-" )
250
252
Dir . chdir ( tmpdir ) do
251
253
sh "curl http://jruby.org.s3.amazonaws.com/downloads/#{ version } /#{ name } .tar.gz -s -o - | tar vzxf -"
252
254
sh "rm -rf test"
@@ -336,7 +338,7 @@ task "libffi:install", :version do |t, args|
336
338
"rm -rf #{ prefix } /lib/#{ name } "
337
339
] . join ( " && " )
338
340
339
- sh "vulcan build -v -o #{ name } .tgz --source #{ name } --command=\" #{ build_command } \" "
341
+ sh "vulcan build -v -o #{ name } .tgz --source #{ name } --prefix= #{ prefix } -- command=\" #{ build_command } \" "
340
342
s3_upload ( tmpdir , name )
341
343
end
342
344
end
0 commit comments