diff options
| -rw-r--r-- | Library/Formula/aalib.rb | 4 | ||||
| -rw-r--r-- | Library/Formula/arabica.rb | 4 | ||||
| -rw-r--r-- | Library/Formula/blitz.rb | 6 | ||||
| -rw-r--r-- | Library/Formula/logstalgia.rb | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/aalib.rb b/Library/Formula/aalib.rb index 1e6cbb880..b7093ae39 100644 --- a/Library/Formula/aalib.rb +++ b/Library/Formula/aalib.rb @@ -13,8 +13,8 @@ class Aalib < Formula if MacOS.xcode_version >= "4.3" # remove the autoreconf if possible, no comment provided about why it is there # so we have no basis to make a decision at this point. - depends_on "automake" - depends_on "libtool" + depends_on "automake" => :build + depends_on "libtool" => :build end def install diff --git a/Library/Formula/arabica.rb b/Library/Formula/arabica.rb index d5d3ad1af..954dbce39 100644 --- a/Library/Formula/arabica.rb +++ b/Library/Formula/arabica.rb @@ -8,8 +8,8 @@ class Arabica < Formula if MacOS.xcode_version >= "4.3" # remove the autoreconf if possible, no comment provided about why it is there # so we have no basis to make a decision at this point. - depends_on "automake" - depends_on "libtool" + depends_on "automake" => :build + depends_on "libtool" => :build end def install diff --git a/Library/Formula/blitz.rb b/Library/Formula/blitz.rb index 348bc1c85..46a2ac9c9 100644 --- a/Library/Formula/blitz.rb +++ b/Library/Formula/blitz.rb @@ -8,12 +8,12 @@ class Blitz < Formula head 'http://blitz.hg.sourceforge.net:8000/hgroot/blitz/blitz', :using => :hg if ARGV.build_head? and MacOS.xcode_version >= "4.3" - depends_on "automake" - depends_on "libtool" + depends_on "automake" => :build + depends_on "libtool" => :build end def install - system "/usr/bin/autoreconf", "-fi" if ARGV.build_head? + system "autoreconf", "-fi" if ARGV.build_head? system "./configure", "--disable-debug", "--disable-dependency-tracking", diff --git a/Library/Formula/logstalgia.rb b/Library/Formula/logstalgia.rb index 37085b19a..4bada4a68 100644 --- a/Library/Formula/logstalgia.rb +++ b/Library/Formula/logstalgia.rb @@ -14,8 +14,8 @@ class Logstalgia < Formula depends_on 'pcre' if ARGV.build_head? and MacOS.xcode_version >= "4.3" - depends_on "automake" - depends_on "libtool" + depends_on "automake" => :build + depends_on "libtool" => :build end |
