diff options
| author | Samuel John | 2012-12-19 14:26:57 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2012-12-19 13:44:52 +0000 |
| commit | 64802387ba76464800a94da6b9df2783e21cc3f4 (patch) | |
| tree | 8a18ff282dddae431ed91558f1818bdf9119a3b1 /Library | |
| parent | cd56cdcd80145fec0c25fd15fd95f34fa2ef0c5d (diff) | |
| download | homebrew-64802387ba76464800a94da6b9df2783e21cc3f4.tar.bz2 | |
python3: Support Case sensitive file systems
Fixes #16602
Closes #16653.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/python3.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index 42b82814c..7389c28ad 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -147,9 +147,9 @@ class Python3 < Formula # A temporary fix, until a homebrew # [issue on handling Frameworks](https://github.com/mxcl/homebrew/issues/15943) # is resolved. `brew install python python3` failed to link because both - # provide `Python.Framework`. Homebrew will need to be smarter about this, + # provide `Python.framework`. Homebrew will need to be smarter about this, # since Frameworks are built to support multiple versions. - ["Headers", "Python", "Resources"].each{ |f| rm(prefix/"Frameworks/Python.Framework/#{f}") } + ["Headers", "Python", "Resources"].each{ |f| rm(prefix/"Frameworks/Python.framework/#{f}") } end |
