Bug 1943010: Add filelock import to configure.py. r=firefox-build-system-reviewers,glandium

Differential Revision: https://phabricator.services.mozilla.com/D235124
This commit is contained in:
André Bargull
2025-01-23 06:13:40 +00:00
parent 052ac92470
commit b40dc04232

View File

@@ -19,6 +19,7 @@ sys.path.insert(0, os.path.join(base_dir, "python", "mozbuild"))
sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "packaging")) sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "packaging"))
sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "six")) sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "six"))
sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "looseversion")) sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "looseversion"))
sys.path.insert(0, os.path.join(base_dir, "third_party", "python", "filelock"))
import mozpack.path as mozpath import mozpack.path as mozpath
import six import six
from mach.requirements import MachEnvRequirements from mach.requirements import MachEnvRequirements