diff options
| author | Jack Nagel | 2013-02-01 21:55:34 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-02-01 21:55:34 -0600 |
| commit | cbc41e044e033c737e2c648e6f7de62a60ccf45b (patch) | |
| tree | c5d6a0c78ffde1cae5793dab77239f72d56f1a59 /Library | |
| parent | df19eaf42107aa3dbf5123dbd8b0368724d90e2d (diff) | |
| download | homebrew-cbc41e044e033c737e2c648e6f7de62a60ccf45b.tar.bz2 | |
libnids: fix deps
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libnids.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/libnids.rb b/Library/Formula/libnids.rb index d0378549e..05f9c790e 100644 --- a/Library/Formula/libnids.rb +++ b/Library/Formula/libnids.rb @@ -11,8 +11,8 @@ class Libnids < Formula depends_on 'pkg-config' => :build depends_on :automake => :build depends_on :libtool => :build - depends_on 'libnet' => :recommended unless build.include? "disable-libnet" - depends_on 'glib' => :recommended unless build.include? "disable-libglib" + depends_on 'libnet' unless build.include? "disable-libnet" + depends_on 'glib' unless build.include? "disable-libglib" # Patch fixes -soname and .so shared library issues. Unreported. def patches |
