aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements/python_dependency.rb
diff options
context:
space:
mode:
authorSamuel John2013-06-19 12:18:48 +0200
committerSamuel John2013-06-19 12:18:48 +0200
commite00f1a998e7d82861164407d4bdf13f444856f91 (patch)
tree774113e0b8da84c4a6ac76534d1d682b0fae0047 /Library/Homebrew/requirements/python_dependency.rb
parent75cd0dbfab16d9f6bd41d53ce1d8329318c84b06 (diff)
downloadhomebrew-e00f1a998e7d82861164407d4bdf13f444856f91.tar.bz2
depends_on :python => 'module' allow user packages
Some prefer to install with `--user` into their home. For example to avoid `sudo` with system's python. Now Homebrew can use those modules to satisfy a python dependency on a certain module.
Diffstat (limited to 'Library/Homebrew/requirements/python_dependency.rb')
-rw-r--r--Library/Homebrew/requirements/python_dependency.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/Library/Homebrew/requirements/python_dependency.rb b/Library/Homebrew/requirements/python_dependency.rb
index 610bc1c6b..90bd14fa6 100644
--- a/Library/Homebrew/requirements/python_dependency.rb
+++ b/Library/Homebrew/requirements/python_dependency.rb
@@ -258,7 +258,6 @@ class PythonInstalled < Requirement
ENV.prepend 'PATH', binary.dirname, ':' unless from_osx?
ENV['PYTHONHOME'] = nil # to avoid fuck-ups.
- ENV['PYTHONNOUSERSITE'] = '1'
ENV['PYTHONPATH'] = global_site_packages.to_s unless brewed?
# Python respects the ARCHFLAGS var if set. Shall we set them here?
# ENV['ARCHFLAGS'] = ??? # FIXME