Skip to content

Commit

Permalink
improving error messaging. fixes sparklemotion#10
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Oct 30, 2010
1 parent c20c9f5 commit 4057e79
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ext/sqlite3/extconf.rb
Expand Up @@ -17,8 +17,11 @@ def asplode missing
abort "#{missing} is missing. Install SQLite3 from " +
"http://www.sqlite.org/ first."
else
abort "#{missing} is missing. Try 'port install sqlite3 +universal' " +
"or 'yum install sqlite3-devel'"
abort <<-error
#{missing} is missing. Try 'port install sqlite3 +universal'
or 'yum install sqlite3-devel' and check your shared library search path (the
location where your sqlite3 shared library is located).
error
end
end

Expand Down

0 comments on commit 4057e79

Please sign in to comment.