typespeed: fix pointless interpolation
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
899a19eccf
commit
2fcf5760da
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue