diff options
| author | Jack Nagel | 2014-05-31 20:39:26 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-05-31 20:39:26 -0500 |
| commit | ae76a71ab66a8559e8dba6c047d70dd63276c83e (patch) | |
| tree | 1419f276eec7161633f8eee9e08ddef77ceb65f2 /Library/Formula/libiscsi.rb | |
| parent | 8bd959cb2181573769315524a78a883727003281 (diff) | |
| download | homebrew-ae76a71ab66a8559e8dba6c047d70dd63276c83e.tar.bz2 | |
libiscsi: modernize autotools deps
Diffstat (limited to 'Library/Formula/libiscsi.rb')
| -rw-r--r-- | Library/Formula/libiscsi.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/libiscsi.rb b/Library/Formula/libiscsi.rb index b7ce151c6..5fda6c007 100644 --- a/Library/Formula/libiscsi.rb +++ b/Library/Formula/libiscsi.rb @@ -8,11 +8,11 @@ class Libiscsi < Formula option 'with-noinst', 'Install the noinst binaries (e.g. iscsi-test-cu)' - depends_on 'cunit' if build.with? 'noinst' - depends_on 'popt' - depends_on :autoconf - depends_on :automake - depends_on :libtool + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + depends_on "cunit" if build.with? "noinst" + depends_on "popt" def install if build.with? 'noinst' |
