aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-06-17 17:43:11 -0500
committerJack Nagel2012-06-17 17:55:54 -0500
commit3d449f97ad4b6d39f7ebd86926ca7dcffbf42562 (patch)
tree7f69bb8f8bef373b41bae19d34c7d21ed075de81 /Library/Formula
parent439e1adbaa42af0cb7153b77a8b18d038d10cee4 (diff)
downloadhomebrew-3d449f97ad4b6d39f7ebd86926ca7dcffbf42562.tar.bz2
typespeed: fix pointless interpolation
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/typespeed.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/typespeed.rb b/Library/Formula/typespeed.rb
index 80deda834..9cf7df520 100644
--- a/Library/Formula/typespeed.rb
+++ b/Library/Formula/typespeed.rb
@@ -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