aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2012-05-07 13:56:45 -0700
committerCharlie Sharpsteen2012-05-07 13:57:06 -0700
commitff12e45434a7535fdf4403d8787156a5b0df72e7 (patch)
tree3f751ed5dddc7436293203b3af07b900dddf969b /Library
parent9eb1f210943780f37de37ad7ce6ddf507e854dcc (diff)
downloadhomebrew-ff12e45434a7535fdf4403d8787156a5b0df72e7.tar.bz2
spatialite-tools: Fix comments
A comment accidentally got separated from the code it was explaining.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/spatialite-tools.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/spatialite-tools.rb b/Library/Formula/spatialite-tools.rb
index 77891cf6b..ecd6f128a 100644
--- a/Library/Formula/spatialite-tools.rb
+++ b/Library/Formula/spatialite-tools.rb
@@ -12,8 +12,10 @@ class SpatialiteTools < Formula
def install
# See: https://github.com/mxcl/homebrew/issues/3328
- ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
ENV.append 'LDFLAGS', '-liconv'
+ # Ensure Homebrew SQLite is found before system SQLite.
+ ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
+
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"