diff options
| author | Charlie Sharpsteen | 2012-05-07 13:56:45 -0700 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-05-07 13:57:06 -0700 |
| commit | ff12e45434a7535fdf4403d8787156a5b0df72e7 (patch) | |
| tree | 3f751ed5dddc7436293203b3af07b900dddf969b /Library | |
| parent | 9eb1f210943780f37de37ad7ce6ddf507e854dcc (diff) | |
| download | homebrew-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.rb | 4 |
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" |
