diff options
| author | Jack Nagel | 2012-09-13 23:15:38 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-09-13 23:16:51 -0500 |
| commit | 48bdee343e3d89bc9f6ba1614c37f88e84c75253 (patch) | |
| tree | 4c95da7ba9e89a3a6e75342871dcf9f3f18fddc4 /Library/Formula/libagg.rb | |
| parent | f9d77f4c23e0c734a7cda5c45241c0b462827ca9 (diff) | |
| download | homebrew-48bdee343e3d89bc9f6ba1614c37f88e84c75253.tar.bz2 | |
Tagging symbol deps as optional is undefined
The current code does not support this behavior, and the X11Dependency
will choke if symbols are passed in the tag field.
Future work will enable this.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/libagg.rb')
| -rw-r--r-- | Library/Formula/libagg.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/libagg.rb b/Library/Formula/libagg.rb index 6b952173c..473937052 100644 --- a/Library/Formula/libagg.rb +++ b/Library/Formula/libagg.rb @@ -10,7 +10,7 @@ class Libagg < Formula depends_on :automake depends_on 'pkg-config' => :build depends_on 'sdl' - depends_on :freetype => :optional if build.include? "with-freetype" + depends_on :freetype if build.include? "with-freetype" depends_on :libtool unless MacOS.version >= :mountain_lion fails_with :clang do |
