1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

install proper sqlite version for ruby 1.9

This commit is contained in:
Javi Fontan 2011-07-21 20:26:35 +02:00
parent 013efa4e4d
commit becc361363

View File

@ -7,7 +7,11 @@ PACKAGES=%w{optional sunstone quota cloud ozones_client ozones_server
DEFAULT=%w{optional sunstone quota cloud ozones_server acct}
SQLITE='sqlite3-ruby --version 1.2.0'
if defined?(RUBY_VERSION) && RUBY_VERSION>="1.8.7"
SQLITE='sqlite3'
else
SQLITE='sqlite3-ruby --version 1.2.0'
end
GROUPS={
:optional => %w{nokogiri xmlparser},