summaryrefslogtreecommitdiff
path: root/tools/configure.py
diff options
context:
space:
mode:
authorAetias <aetias@outlook.com>2024-10-19 12:17:08 +0200
committerAetias <aetias@outlook.com>2024-10-19 12:17:08 +0200
commit10c2e3413b3244c5f2adffac1140f37920f13988 (patch)
treed13b6142759bc78d50a491d87de56e7e9213c9a4 /tools/configure.py
parentbe640e984d6cb93d803d7fe45eba96f441b58ec8 (diff)
Remove obsolete path arguments
Diffstat (limited to 'tools/configure.py')
-rw-r--r--tools/configure.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/configure.py b/tools/configure.py
index 329a6e41..691259ad 100644
--- a/tools/configure.py
+++ b/tools/configure.py
@@ -132,7 +132,7 @@ def main():
n.rule(
name="delink",
- command="./dsd delink --config-path $config_path --elf-path $delinks_path"
+ command="./dsd delink --config-path $config_path"
)
n.newline()
@@ -144,7 +144,7 @@ def main():
n.rule(
name="lcf",
- command="./dsd lcf -c $config_path --lcf-file $lcf_file --objects-file $objects_file --delinks-path $delinks_path --build-path $build_path"
+ command="./dsd lcf -c $config_path --lcf-file $lcf_file --objects-file $objects_file"
)
n.newline()
@@ -299,7 +299,6 @@ def add_delink_and_lcf_builds(n: ninja_syntax.Writer, game_config: Path, game_bu
outputs=str(delinks_path / "delink.yaml"),
variables={
"config_path": game_config / "arm9" / "config.yaml",
- "delinks_path": delinks_path,
}
)
n.newline()
@@ -314,8 +313,6 @@ def add_delink_and_lcf_builds(n: ninja_syntax.Writer, game_config: Path, game_bu
"config_path": game_config / "arm9" / "config.yaml",
"lcf_file": lcf_file,
"objects_file": objects_file,
- "delinks_path": delinks_path,
- "build_path": game_build,
}
)
n.newline()