diff options
| author | Jack Nagel | 2013-08-16 11:24:26 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-08-16 11:26:03 -0500 |
| commit | bf3dea328e00bdfa98725d212dfe8baedae7f78a (patch) | |
| tree | 302c9dfa83c1ef213579bb8bc7e0cd1a44f86ac2 /Library | |
| parent | c83d330ba03b13fca3e2007b0f3ca7778ea75083 (diff) | |
| download | homebrew-bf3dea328e00bdfa98725d212dfe8baedae7f78a.tar.bz2 | |
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.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/automake.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/automake.rb b/Library/Formula/automake.rb index 7ab3e736a..535efa620 100644 --- a/Library/Formula/automake.rb +++ b/Library/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" |
