diff options
| author | Jack Nagel | 2014-05-09 10:33:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-09 10:33:18 -0500 |
| commit | 8917b31055a8078284451e1409bdf89ba8a14e2d (patch) | |
| tree | 1b5b292f28dca73eec5dd98004d2486374c4203d /Library | |
| parent | cc6784ce00c39a642d877a7c6c26a756ca1178f2 (diff) | |
| download | homebrew-8917b31055a8078284451e1409bdf89ba8a14e2d.tar.bz2 | |
io: fix audit warning
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/io.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/io.rb b/Library/Formula/io.rb index 38aa88f80..703a41c8e 100644 --- a/Library/Formula/io.rb +++ b/Library/Formula/io.rb @@ -46,11 +46,11 @@ class Io < Formula "add_subdirectory(addons)", '#add_subdirectory(addons)' else # Turn off specific add-ons that are not currently working - inreplace "addons/CMakeLists.txt" do |addons| + inreplace "addons/CMakeLists.txt" do |s| # Looks for deprecated Freetype header - addons.gsub! /(add_subdirectory\(Font\))/, '#\1' + s.gsub! /(add_subdirectory\(Font\))/, '#\1' # Builds against older version of memcached library - addons.gsub! /(add_subdirectory\(Memcached\))/, '#\1' + s.gsub! /(add_subdirectory\(Memcached\))/, '#\1' end end |
