diff options
| author | Nikhil Benesch | 2014-12-21 22:18:02 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-22 00:23:24 -0500 |
| commit | 667284fc68ebb13318705daf3695c63686d4ee89 (patch) | |
| tree | 528545e727015bf4969f0a5bfd0d04742825e4b0 /Library/Formula/python.rb | |
| parent | de695a4edc849f81e513966832b938d7e78bbef6 (diff) | |
| download | homebrew-667284fc68ebb13318705daf3695c63686d4ee89.tar.bz2 | |
python: remove dtrace vestiges
Homebrew used to optionally build DTrace support via a patch [0]. The
patch was removed in `39848385`, but support for passing along the
`--with-dtrace` option the patch provided was not.
This config option is nonsense without the patch; remove it to avoid
disappointing DTrace-seeking folks like me.
[0]: http://bugs.python.org/issue13405
Closes #35177.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index 85385a3d8..c7a4149aa 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -19,7 +19,6 @@ class Python < Formula option "quicktest", "Run `make quicktest` after the build (for devs; may fail)" option "with-brewed-tk", "Use Homebrew's Tk (has optional Cocoa and threads support)" option "with-poll", "Enable select.poll, which is not fully implemented on OS X (http://bugs.python.org/issue5154)" - option "with-dtrace", "Experimental DTrace support (http://bugs.python.org/issue13405)" depends_on "pkg-config" => :build depends_on "readline" => :recommended @@ -92,7 +91,6 @@ class Python < Formula ] args << "--without-gcc" if ENV.compiler == :clang - args << "--with-dtrace" if build.with? "dtrace" if superenv? distutils_fix_superenv(args) |
