aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dcal.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/dcal.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/dcal.rb')
-rw-r--r--Library/Formula/dcal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/dcal.rb b/Library/Formula/dcal.rb
index d3f6c782f..724c58c6e 100644
--- a/Library/Formula/dcal.rb
+++ b/Library/Formula/dcal.rb
@@ -7,7 +7,7 @@ class Dcal < Formula
version '0.1.0'
def install
- system "#{ENV['CXX']}", "dcal.c", "-o", "dcal"
+ system ENV.cxx, "dcal.c", "-o", "dcal"
bin.install 'dcal'
end
end