aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-02-28 19:47:09 -0600
committerJack Nagel2012-02-28 20:36:04 -0600
commitfd24a21f43581ad7d975b62c7527331e833ce06a (patch)
tree900937d24bed7ade117b2b4f0b8b07351cd9e28e /Library
parentf78970f6b99d4b1da7471d657ff34d8e660d4a8e (diff)
downloadhomebrew-fd24a21f43581ad7d975b62c7527331e833ce06a.tar.bz2
Fix audit warnings
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/aalib.rb4
-rw-r--r--Library/Formula/arabica.rb4
-rw-r--r--Library/Formula/blitz.rb6
-rw-r--r--Library/Formula/logstalgia.rb4
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