diff options
| author | Jack Nagel | 2012-08-20 17:01:54 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-08-20 17:01:54 -0500 |
| commit | 15fec3868555bd71cb2045d34a2e30d7ac7e28fc (patch) | |
| tree | 6e5af293890ff8c85faacf4317dc2b6f627f9b9e /Library/Formula/python.rb | |
| parent | fe6c8dcd7d29bdc7a5cdfe2e42eeed7006e6df95 (diff) | |
| download | homebrew-15fec3868555bd71cb2045d34a2e30d7ac7e28fc.tar.bz2 | |
python: optional deps are really recommended
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 5a9a0cdf6..a306fc659 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -32,9 +32,9 @@ class Python < Formula depends_on TkCheck.new depends_on 'pkg-config' => :build - depends_on 'readline' => :optional # Prefer over OS X's libedit - depends_on 'sqlite' => :optional # Prefer over OS X's older version - depends_on 'gdbm' => :optional + depends_on 'readline' => :recommended + depends_on 'sqlite' => :recommended + depends_on 'gdbm' => :recommended depends_on :x11 # tk.h includes X11/Xlib.h and X11/X.h option :universal |
