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:
Charlie Sharpsteen 2011-11-28 23:32:12 -08:00
parent 1eefe17e51
commit 8dee41866f

View file

@ -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