aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/malbolge.rb
diff options
context:
space:
mode:
authorJack Nagel2012-05-15 13:47:30 -0500
committerJack Nagel2012-05-15 14:03:12 -0500
commitbe48f383bf0673ee23f5911c820422121f42076b (patch)
tree38591d575c4e7e3267d78f033f52b6b5837c3419 /Library/Formula/malbolge.rb
parent417d7880702a645a5efd272a42dd03a8e7419035 (diff)
downloadhomebrew-be48f383bf0673ee23f5911c820422121f42076b.tar.bz2
Use ENV shortcut methods where applicable
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/malbolge.rb')
-rw-r--r--Library/Formula/malbolge.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/malbolge.rb b/Library/Formula/malbolge.rb
index 6d3485618..7ebb2ccbe 100644
--- a/Library/Formula/malbolge.rb
+++ b/Library/Formula/malbolge.rb
@@ -12,7 +12,7 @@ class Malbolge < Formula
end
def install
- system "#{ENV['CXX']}", "malbolge.c", "-o", "malbolge"
+ system ENV.cxx, "malbolge.c", "-o", "malbolge"
bin.install 'malbolge'
end
end