From f944ac3aa059d829fdb0db57ee6bf8d8958d9534 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Mon, 7 May 2012 20:54:56 -0500 Subject: Convert some /usr/bin/which calls to use the 'which' method Signed-off-by: Jack Nagel --- Library/Formula/couchdb-lucene.rb | 2 +- Library/Formula/cvs2svn.rb | 2 +- Library/Formula/rrdtool.rb | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/couchdb-lucene.rb b/Library/Formula/couchdb-lucene.rb index c31088ee3..f7fc00ae5 100644 --- a/Library/Formula/couchdb-lucene.rb +++ b/Library/Formula/couchdb-lucene.rb @@ -37,7 +37,7 @@ class CouchdbLucene < Formula os_process_timeout=60000 ; increase the timeout from 5 seconds. [external] -fti=#{`which python`.chomp} #{prefix}/tools/couchdb-external-hook.py +fti=#{which 'python'} #{prefix}/tools/couchdb-external-hook.py [httpd_db_handlers] _fti = {couch_httpd_external, handle_external_req, <<"fti">>} diff --git a/Library/Formula/cvs2svn.rb b/Library/Formula/cvs2svn.rb index 6538a80b6..9dd5b2a13 100644 --- a/Library/Formula/cvs2svn.rb +++ b/Library/Formula/cvs2svn.rb @@ -5,7 +5,7 @@ class PythonWithGdbm < Requirement The Python being used does not include gdbm support, but it is required to build this formula: - #{`which python`.chomp} + #{which 'python'} Homebrew's Python includes gdbm support. EOS diff --git a/Library/Formula/rrdtool.rb b/Library/Formula/rrdtool.rb index b6e5e3900..9a02ee556 100644 --- a/Library/Formula/rrdtool.rb +++ b/Library/Formula/rrdtool.rb @@ -26,8 +26,8 @@ class Rrdtool < Formula ENV.libxml2 ENV.x11 - which_perl = `/usr/bin/which perl`.chomp - which_ruby = `/usr/bin/which ruby`.chomp + which_perl = which 'perl' + which_ruby = which 'ruby' opoo "Using system Ruby. RRD module will be installed to /Library/Ruby/..." if which_ruby == "/usr/bin/ruby" opoo "Using system Perl. RRD module will be installed to /Library/Perl/..." if which_perl == "/usr/bin/perl" -- cgit v1.2.3