Replace remaining shelled-out whiches

This commit is contained in:
Misty De Meo 2013-03-21 08:17:26 -05:00
parent fc93b3861b
commit 6c61f54c8a
2 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ class Auctex < Formula
return a.sub('--with-emacs=', '')
end
end
return `which emacs`.chomp
return which 'emacs'
end
def install

View file

@ -34,7 +34,7 @@ class Pgplot < Formula
# re-hardcode the share dir
inreplace 'src/grgfil.f', '/usr/local/pgplot', share
# perl may not be in /usr/local
inreplace 'makehtml', '/usr/local/bin/perl', `which perl`.chomp
inreplace 'makehtml', '/usr/local/bin/perl', which('perl')
# prevent a "dereferencing pointer to incomplete type" in libpng
inreplace 'drivers/pndriv.c', 'setjmp(png_ptr->jmpbuf)', 'setjmp(png_jmpbuf(png_ptr))'
@ -58,7 +58,7 @@ LIBS="#{ENV.ldflags} -lX11"
MOTIF_LIBS=""
ATHENA_LIBS=""
TK_LIBS=""
RANLIB="#{`which ranlib`.chomp}"
RANLIB="#{which 'ranlib'}"
SHARED_LIB="libpgplot.dylib"
SHARED_LD="#{ENV['FC']} -dynamiclib -single_module $LDFLAGS -lX11 -install_name libpgplot.dylib"
SHARED_LIB_LIBS="#{ENV.ldflags} -lpng -lX11"