diff options
| author | Adam Vandenberg | 2012-09-03 18:30:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-03 18:30:24 -0700 |
| commit | 9cfb0cdb0d2e5d582872cd9fd0aeff3fbb7346d3 (patch) | |
| tree | a3b0f4c39b87df27ab3a3d0ef1838181566c2afe | |
| parent | 7e7b46cccc29dc517206a2ad9cf06743495ed37c (diff) | |
| download | homebrew-9cfb0cdb0d2e5d582872cd9fd0aeff3fbb7346d3.tar.bz2 | |
logstalgia: use new dsl
| -rw-r--r-- | Library/Formula/logstalgia.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/logstalgia.rb b/Library/Formula/logstalgia.rb index 8186395b4..30f7a16a9 100644 --- a/Library/Formula/logstalgia.rb +++ b/Library/Formula/logstalgia.rb @@ -15,7 +15,7 @@ class Logstalgia < Formula depends_on 'pcre' depends_on :x11 - if ARGV.build_head? + if build.head? depends_on :automake depends_on :libtool end @@ -25,7 +25,7 @@ class Logstalgia < Formula ENV.append "CXXFLAGS", "-I#{HOMEBREW_PREFIX}/include" # Handle building head. - system "autoreconf -f -i" if ARGV.build_head? + system "autoreconf -f -i" if build.head? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" |
