diff options
| author | Adam Vandenberg | 2010-07-09 12:40:41 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-16 09:09:39 -0700 |
| commit | 511d309374f693231938eecfda7202c2a6ce3e4d (patch) | |
| tree | 08783d129a434ec5977ef27eae3083f5f932b53c /Library/Formula/schroedinger.rb | |
| parent | 418902f7beabf6cf724c9e84cf5294aed5fc376e (diff) | |
| download | homebrew-511d309374f693231938eecfda7202c2a6ce3e4d.tar.bz2 | |
Add ARGV.build_head? and use it.
This allows both "--HEAD" and "-H" to be used consistently, which was the
intention in the first place.
Diffstat (limited to 'Library/Formula/schroedinger.rb')
| -rw-r--r-- | Library/Formula/schroedinger.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/schroedinger.rb b/Library/Formula/schroedinger.rb index 809575bc6..05818dc91 100644 --- a/Library/Formula/schroedinger.rb +++ b/Library/Formula/schroedinger.rb @@ -10,7 +10,7 @@ class Schroedinger <Formula depends_on 'orc' def install - system "autoreconf -i -f" if ARGV.include? '--HEAD' + system "autoreconf -i -f" if ARGV.build_head? system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" system "make install" end |
