From dc1dd55941171de0ea6832a7784d5e5c6883541c Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sun, 6 Feb 2005 19:19:06 +0000 Subject: Fixed problem with /usr/local sqlite includes not being found. Hopefully. --- ext/sqlite3_api/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/sqlite3_api/extconf.rb b/ext/sqlite3_api/extconf.rb index ac393c0..9787e33 100644 --- a/ext/sqlite3_api/extconf.rb +++ b/ext/sqlite3_api/extconf.rb @@ -1,6 +1,6 @@ require 'mkmf' -dir_config( "sqlite3", "/usr/local", "/usr/local" ) +dir_config( "sqlite3", "/usr/local" ) if have_header( "sqlite3.h" ) and have_library( "sqlite3", "sqlite3_open" ) system "swig -ruby sqlite3_api.i" -- cgit