diff options
| author | Jack Nagel | 2014-06-01 21:38:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-01 21:38:18 -0500 |
| commit | 40f477491ba8b6f8867339d4f60adf425f0d21b8 (patch) | |
| tree | ab42fc0de4c3d63871164f8ca2048e99967a15f5 | |
| parent | 29f9a44af6858973acb238aada54c267980affac (diff) | |
| download | homebrew-40f477491ba8b6f8867339d4f60adf425f0d21b8.tar.bz2 | |
yasm: modernize autotools deps
| -rw-r--r-- | Library/Formula/yasm.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/yasm.rb b/Library/Formula/yasm.rb index a16399e8e..280c59147 100644 --- a/Library/Formula/yasm.rb +++ b/Library/Formula/yasm.rb @@ -15,9 +15,9 @@ class Yasm < Formula head do url 'https://github.com/yasm/yasm.git' - depends_on 'gettext' - depends_on :autoconf - depends_on :automake + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "gettext" end depends_on :python => :optional |
