fix build system for ruby 1.8, ruby 1.9.2 and ruby 1.9.3

This commit is contained in:
Laurent Sansonetti
2012-01-03 21:27:14 +01:00
parent 1c6b1524b0
commit bedf15c16e

View File

@@ -120,7 +120,10 @@ module Motion; module Project;
end
# Start build.
builders.each { |queue, th| th.wakeup }
builders.each do |queue, th|
sleep 0.01 while th.status != 'sleep'
th.wakeup
end
builders.each { |queue, th| th.join }
# Merge the result (based on build order).