aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2010-04-13 20:34:13 +0100
committerMax Howell2010-04-13 20:34:13 +0100
commit64f25d9286935a708b25c2d9048c916d687fc15e (patch)
treee7e83320ada4ddab3745c0f8cace3181af5701c6 /Library/Formula
parent808f2d07341e2c83506d0446fe45f619fb56b2ed (diff)
downloadhomebrew-64f25d9286935a708b25c2d9048c916d687fc15e.tar.bz2
Remove debug output
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/icu4c.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/icu4c.rb b/Library/Formula/icu4c.rb
index e3bc0ef44..c7c4d148d 100644
--- a/Library/Formula/icu4c.rb
+++ b/Library/Formula/icu4c.rb
@@ -40,7 +40,7 @@ class Icu4c <Formula
ENV['HOMEBREW_PN'] = pn.to_s
rx = /\t(.*) \(compatibility version (\d+\.)*\d+, current version (\d+\.)*\d+\)/
dylibs = `otool -L "$HOMEBREW_PN"`.split "\n"
- dylibs = dylibs.map{ |fn| rx =~ fn && $1 }.compact.reject{ |fn| fn[0].chr == '/' }.map{ |fn| p fn; Pathname.new fn }
+ dylibs = dylibs.map{ |fn| rx =~ fn && $1 }.compact.reject{ |fn| fn[0].chr == '/' }.map{ |fn| Pathname.new fn }
yield dylibs.shift, dylibs
end
end