We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20115dc + 0d40efb commit d0c9023Copy full SHA for d0c9023
SConstruct
@@ -1053,7 +1053,7 @@ if env["ninja"]:
1053
SetOption("experimental", "ninja")
1054
env["NINJA_FILE_NAME"] = env["ninja_file"]
1055
env["NINJA_DISABLE_AUTO_RUN"] = not env["ninja_auto_run"]
1056
- env.Tool("ninja")
+ env.Tool("ninja", "build.ninja")
1057
1058
# Threads
1059
if env["threads"]:
@@ -1116,7 +1116,7 @@ atexit.register(print_elapsed_time)
1116
1117
1118
def purge_flaky_files():
1119
- paths_to_keep = ["ninja.build"]
+ paths_to_keep = ["build.ninja"]
1120
for build_failure in GetBuildFailures():
1121
path = build_failure.node.path
1122
if os.path.isfile(path) and path not in paths_to_keep:
0 commit comments