python3: Support Case sensitive file systems

Fixes Homebrew/homebrew#16602

Closes Homebrew/homebrew#16653.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Samuel John 2012-12-19 14:26:57 +01:00 committed by Mike McQuaid
parent 36bb3be0b1
commit 67882b03a9
1 changed files with 2 additions and 2 deletions

View File

@ -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