diff options
| author | Jack Nagel | 2012-05-15 13:47:30 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2012-05-15 14:03:12 -0500 | 
| commit | be48f383bf0673ee23f5911c820422121f42076b (patch) | |
| tree | 38591d575c4e7e3267d78f033f52b6b5837c3419 /Library/Formula/malbolge.rb | |
| parent | 417d7880702a645a5efd272a42dd03a8e7419035 (diff) | |
| download | homebrew-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.rb | 2 | 
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  | 
