typespeed: fix pointless interpolation

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-06-17 17:43:11 -05:00
parent 899a19eccf
commit 2fcf5760da

View file

@ -7,8 +7,8 @@ class Typespeed < Formula
def install
# Fix the hardcoded gcc.
inreplace 'src/Makefile.in', 'gcc', "#{ENV.cc}"
inreplace 'testsuite/Makefile.in', 'gcc', "#{ENV.cc}"
inreplace 'src/Makefile.in', 'gcc', ENV.cc
inreplace 'testsuite/Makefile.in', 'gcc', ENV.cc
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end