diff options
| author | Lieven Hollevoet | 2013-07-31 11:30:38 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-06 20:14:51 -0800 |
| commit | cd4f5671847a32a17e1f37315cc002570eb07cc5 (patch) | |
| tree | 2e888eb7698e13767f84e4e5a9448d003cf9dc1e /Library/Formula | |
| parent | 34ecbfbe9845bdafd0dad1ab90c18fd1856adf2c (diff) | |
| download | homebrew-cd4f5671847a32a17e1f37315cc002570eb07cc5.tar.bz2 | |
rrdtool: document Perl binding location
In case a user has a local Perl install (e.g. from PerlBrew) then
the installer does not by default install the RRDtool binding
for this Perl installation. It picks the system Perl version
instead. This patch documents in the warning message how to
install the RRDtool binding for the user-provided Perl.
Closes #21564.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rrdtool.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/rrdtool.rb b/Library/Formula/rrdtool.rb index 0198fec5f..ebbeb4885 100644 --- a/Library/Formula/rrdtool.rb +++ b/Library/Formula/rrdtool.rb @@ -22,7 +22,7 @@ class Rrdtool < Formula which_ruby = which 'ruby' opoo "Using system Ruby. RRD module will be installed to /Library/Ruby/..." if which_ruby.realpath == RUBY_PATH - opoo "Using system Perl. RRD module will be installed to /Library/Perl/..." if which_perl.to_s == "/usr/bin/perl" + opoo "Using system Perl. RRD module will be installed to /Library/Perl/... If you want to install for your default Perl instead run 'brew install rrdtool --env=std'" if which_perl.to_s == "/usr/bin/perl" args = %W[ --disable-dependency-tracking |
