diff options
| author | Chad Catlett | 2013-06-11 09:02:59 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-06-11 09:08:21 -0500 | 
| commit | caa9ab2b0ce9ede53ce2f543cb31d2220995dbfc (patch) | |
| tree | 40472a55f69796a4d9e9366cc85f44793eb14493 | |
| parent | d0c9dff6a404302aca66203a1d45661e5d6579c3 (diff) | |
| download | homebrew-caa9ab2b0ce9ede53ce2f543cb31d2220995dbfc.tar.bz2 | |
sqlite: fix download filename of functions
Closes #20412.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/sqlite.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb index 4b6820efd..15de8317d 100644 --- a/Library/Formula/sqlite.rb +++ b/Library/Formula/sqlite.rb @@ -42,7 +42,7 @@ class Sqlite < Formula      system "make install"      if build.with? "functions" -      SqliteFunctions.new.brew { mv 'extension-functions.c?get=25', buildpath/'extension-functions.c' } +      SqliteFunctions.new.brew { mv 'extension-functions.c', buildpath/'extension-functions.c' }        system ENV.cc, "-fno-common",                       "-dynamiclib",                       "extension-functions.c",  | 
