diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-05-17 00:50:11 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2024-05-17 00:50:11 +0200 |
| commit | 61d4f5c53bc87665c425f10e663eedf8858b032f (patch) | |
| tree | 5897a19f7439cb090ee180062b6caeeedfa4fb68 | |
| parent | d594c9ceea99d5f48747aa9102586ddb0f95ea8a (diff) | |
| download | rust-61d4f5c53bc87665c425f10e663eedf8858b032f.tar.gz rust-61d4f5c53bc87665c425f10e663eedf8858b032f.zip | |
Fix `htmldocck` function
| -rw-r--r-- | src/tools/run-make-support/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/run-make-support/src/lib.rs b/src/tools/run-make-support/src/lib.rs index 03b1a7efaad..9854d91e19e 100644 --- a/src/tools/run-make-support/src/lib.rs +++ b/src/tools/run-make-support/src/lib.rs @@ -66,7 +66,7 @@ pub fn python_command() -> Command { pub fn htmldocck() -> Command { let mut python = python_command(); - python.arg(source_path().join("/src/etc/htmldocck.py")); + python.arg(source_path().join("src/etc/htmldocck.py")); python } |
