# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os import shutil
import mozpack.path as mozpath from buildconfig import topsrcdir from mach.logging import LoggingManager
from mozbuild.util import ReadOnlyDict
# By including this module, tests get structured logging.
log_manager = LoggingManager()
log_manager.add_terminal_logging()
def prepare_tmp_topsrcdir(path): for p in ( "build/autoconf/config.guess", "build/autoconf/config.sub", "build/moz.configure/checks.configure", "build/moz.configure/init.configure", "build/moz.configure/util.configure",
):
file_path = os.path.join(path, p)
os.makedirs(os.path.dirname(file_path), exist_ok=True)
shutil.copy(os.path.join(topsrcdir, p), file_path)
# mozconfig is not a reusable type (it's actually a module) so, we # have to mock it. class MockConfig(object): def __init__(
self,
topsrcdir="/path/to/topsrcdir",
extra_substs={},
error_is_fatal=True,
):
self.topsrcdir = mozpath.abspath(topsrcdir)
self.topobjdir = mozpath.abspath("/path/to/topobjdir")
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.