aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-02-01 21:57:02 -0600
committerJack Nagel2013-02-01 21:57:02 -0600
commit6bb9a012ec3a4e586e10dd75cc4538d52ad8a391 (patch)
tree30e5df3ea95833df89c12d97b0ef387526d20c72 /Library
parent9b62266790bcd138f96adde775e43e403c01fe98 (diff)
downloadhomebrew-6bb9a012ec3a4e586e10dd75cc4538d52ad8a391.tar.bz2
htmlcompressor: fix deps
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/htmlcompressor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/htmlcompressor.rb b/Library/Formula/htmlcompressor.rb
index 7765e2353..af683855e 100644
--- a/Library/Formula/htmlcompressor.rb
+++ b/Library/Formula/htmlcompressor.rb
@@ -8,8 +8,8 @@ class Htmlcompressor < Formula
option 'yuicompressor', "Use YUICompressor for JS/CSS compression"
option 'closure-compiler', "Use Closure Compiler for JS optimization"
- depends_on "yuicompressor" => :optional if build.include? 'yuicompressor'
- depends_on "closure-compiler" => :optional if build.include? 'closure-compiler'
+ depends_on "yuicompressor" if build.include? 'yuicompressor'
+ depends_on "closure-compiler" if build.include? 'closure-compiler'
def install
libexec.install "htmlcompressor-1.5.3.jar"