diff options
| author | Charlie Sharpsteen | 2011-11-28 23:32:12 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-28 23:32:12 -0800 |
| commit | 83307a3dc31f71efc453b3e6ce0938b8a89f24af (patch) | |
| tree | ce64f89b1ca315f377f2409cb1489fab60e26eed /Library | |
| parent | 22f7c7eda304ffaf5a122be66085a80de49de776 (diff) | |
| download | homebrew-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')
| -rw-r--r-- | Library/Formula/pdf2svg.rb | 2 |
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 |
