Skip to content

Commit

Permalink
Merge pull request #284 from allight/fix-gds-command
Browse files Browse the repository at this point in the history
$(PYTHON3) Make variable substitution is not supported in run_shell and is not needed anyway.
  • Loading branch information
QuantamHD authored Feb 29, 2024
2 parents 9c48e39 + 006bb2c commit f449483
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gds_write/build_defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ def _gds_write_impl(ctx):
tech_lef,
],
),
command = "$(PYTHON3)" +
" {}".format(ctx.executable._gds_write.path) +
command = "{}".format(ctx.executable._gds_write.path) +
" --design-name {}".format(ctx.attr.implemented_rtl[SynthesisInfo].top_module) +
" --input-def {}".format(ctx.attr.implemented_rtl[OpenRoadInfo].routed_def.path) +
lef_args +
Expand Down

0 comments on commit f449483

Please sign in to comment.