aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-05-09 10:33:18 -0500
committerJack Nagel2014-05-09 10:33:18 -0500
commit8917b31055a8078284451e1409bdf89ba8a14e2d (patch)
tree1b5b292f28dca73eec5dd98004d2486374c4203d /Library/Formula
parentcc6784ce00c39a642d877a7c6c26a756ca1178f2 (diff)
downloadhomebrew-8917b31055a8078284451e1409bdf89ba8a14e2d.tar.bz2
io: fix audit warning
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/io.rb6
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