diff options
| author | Jack Nagel | 2012-06-17 17:43:11 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-06-17 17:55:54 -0500 |
| commit | 3d449f97ad4b6d39f7ebd86926ca7dcffbf42562 (patch) | |
| tree | 7f69bb8f8bef373b41bae19d34c7d21ed075de81 /Library/Formula | |
| parent | 439e1adbaa42af0cb7153b77a8b18d038d10cee4 (diff) | |
| download | homebrew-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.rb | 4 |
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 |
