aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-11-28 23:32:12 -0800
committerCharlie Sharpsteen2011-11-28 23:32:12 -0800
commit83307a3dc31f71efc453b3e6ce0938b8a89f24af (patch)
treece64f89b1ca315f377f2409cb1489fab60e26eed /Library/Formula
parent22f7c7eda304ffaf5a122be66085a80de49de776 (diff)
downloadhomebrew-83307a3dc31f71efc453b3e6ce0938b8a89f24af.tar.bz2
pdf2svg: Remove unecessary return statement
The `return` statement in the GLib test was causing Ruby 1.8.6 to emit warnings on Leopard.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pdf2svg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/pdf2svg.rb b/Library/Formula/pdf2svg.rb
index 8cb0b53df..baa4465e6 100644
--- a/Library/Formula/pdf2svg.rb
+++ b/Library/Formula/pdf2svg.rb
@@ -3,7 +3,7 @@ require 'formula'
def have_poppler_glib?
# Not using Homebrew's system wrapper because we actually want to see the
# exit code of the command.
- return Kernel.system "#{HOMEBREW_PREFIX}/bin/pkg-config", "poppler-glib", "--exists"
+ Kernel.system "#{HOMEBREW_PREFIX}/bin/pkg-config", "poppler-glib", "--exists"
end
class Pdf2svg < Formula