mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 18:47:53 +00:00
9b7eee2c37
On POSIX platforms there can be `lib` and `lib64` for `site-packages`. On Fedora35 once a virtualenv is created, `lib64` is a symlink of `lib`. Since we can determine what these paths will be before the virtualenv is created, `realpath` has different results before/after, which is problematic for our `pthfile`. Since we only care about resolving the symlink in the prefix (to keep it in line with the `topobjdir`, we can simply only `realpath` that and disregard that there's a symlink between `lib` and `lib64`, which makes our `pthfile` that's created and expected always the same on all platforms. Differential Revision: https://phabricator.services.mozilla.com/D162136 |
||
---|---|---|
.. | ||
docs | ||
mach | ||
bash-completion.sh | ||
metrics.yaml | ||
pings.yaml | ||
README.rst | ||
setup.cfg | ||
setup.py |
==== mach ==== Mach (German for *do*) is a generic command dispatcher for the command line. To use mach, you install the mach core (a Python package), create an executable *driver* script (named whatever you want), and write mach commands. When the *driver* is executed, mach dispatches to the requested command handler automatically. To learn more, read the docs in ``docs/``.