diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-10-31 10:42:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-31 09:42:14 +0000 |
commit | 9d9c5d3ca9b514f3021ae7edd476354faf194bca (patch) | |
tree | 3a89fb91191a032b49109a12325b04d1af0fcfd3 /python/mach_bootstrap.py | |
parent | 4ea042cb1473d22b7b2e804da5fb5b68fee6432d (diff) | |
download | servo-9d9c5d3ca9b514f3021ae7edd476354faf194bca.tar.gz servo-9d9c5d3ca9b514f3021ae7edd476354faf194bca.zip |
Vendor `mozdebug` and stop using `distutils` (#30659)
The version of `mozdebug` installable via pip is two years old and
Mozilla is slow to release new versions. It also uses `distutils` which
doesn't work on newer Python versions. Vendor it and stop using
`distutils` there.
Diffstat (limited to 'python/mach_bootstrap.py')
-rw-r--r-- | python/mach_bootstrap.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/mach_bootstrap.py b/python/mach_bootstrap.py index aed66995f2e..df71cb838d6 100644 --- a/python/mach_bootstrap.py +++ b/python/mach_bootstrap.py @@ -20,6 +20,7 @@ WPT_SERVE_PATH = os.path.join(WPT_PATH, "tests", "tools", "wptserve") SEARCH_PATHS = [ os.path.join("python", "mach"), + os.path.join("third_party", "mozdebug"), ] # Individual files providing mach commands. |