automake: force use of system perl

If a non-system perl is present when automake is built and subsequently
removed, automake will break. Force the use of the system perl to
prevent this.
master
Jack Nagel 2013-08-16 11:24:26 -05:00
parent e8f52f77b7
commit 2e9bd90f75
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,8 @@ class Automake < Formula
end
def install
ENV['PERL'] = '/usr/bin/perl'
system "./configure", "--prefix=#{prefix}"
system "make install"