From 2e9bd90f757a1155a9778c729c937e9a73078954 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 16 Aug 2013 11:24:26 -0500 Subject: [PATCH] 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. --- Formula/automake.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Formula/automake.rb b/Formula/automake.rb index 7ab3e736af8..535efa62004 100644 --- a/Formula/automake.rb +++ b/Formula/automake.rb @@ -14,6 +14,8 @@ class Automake < Formula end def install + ENV['PERL'] = '/usr/bin/perl' + system "./configure", "--prefix=#{prefix}" system "make install"