pdf2svg: Remove unecessary return statement
The `return` statement in the GLib test was causing Ruby 1.8.6 to emit warnings on Leopard.
This commit is contained in:
parent
1eefe17e51
commit
8dee41866f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue