diff options
| author | Adam Vandenberg | 2010-11-02 07:40:27 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-11-02 07:40:27 -0700 | 
| commit | ede52b767059c94671997ec5bc5eb37b108b3d3b (patch) | |
| tree | 20383de77902adefe3aceacd62c329b5ee5911b0 /Library/Formula/sqlite.rb | |
| parent | 04d0d8f398f27bfd61c947973df15087d2e83820 (diff) | |
| download | homebrew-ede52b767059c94671997ec5bc5eb37b108b3d3b.tar.bz2 | |
sqlite - fix options
Diffstat (limited to 'Library/Formula/sqlite.rb')
| -rw-r--r-- | Library/Formula/sqlite.rb | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb index d7bd8a78a..1515aec10 100644 --- a/Library/Formula/sqlite.rb +++ b/Library/Formula/sqlite.rb @@ -6,8 +6,10 @@ class Sqlite <Formula    homepage 'http://www.sqlite.org/'    def options -    [["--with-rtree", "Enables the R*Tree index module"]] -    [["--universal", "Build a universal binary."]] +  [ +    ["--with-rtree", "Enables the R*Tree index module"], +    ["--universal", "Build a universal binary."] +  ]    end    def install  | 
