aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-10-16 13:02:24 +0100
committerMike McQuaid2014-10-19 13:58:52 +0100
commit6d31273565d3be84e52729bbf475e58a5ec5ae29 (patch)
tree6257abfa6665700b25421e21f5a1106eea8421c0 /Library
parent44239378a2d7b7225bda72c221620dea0533ed56 (diff)
downloadhomebrew-6d31273565d3be84e52729bbf475e58a5ec5ae29.tar.bz2
wget: deprecate enable-* options to with-*.
Closes #32474. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/wget.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/wget.rb b/Library/Formula/wget.rb
index b4f0dde6a..678fae739 100644
--- a/Library/Formula/wget.rb
+++ b/Library/Formula/wget.rb
@@ -26,8 +26,11 @@ class Wget < Formula
depends_on "gettext"
end
- option "enable-iri", "Enable iri support"
- option "enable-debug", "Build with debug support"
+ deprecated_option "enable-iri" => "with-iri"
+ deprecated_option "enable-debug" => "with-debug"
+
+ option "with-iri", "Enable iri support"
+ option "with-debug", "Build with debug support"
depends_on "openssl"
depends_on "libidn" if build.include? "enable-iri"