about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2024-05-17 00:50:11 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2024-05-17 00:50:11 +0200
commit61d4f5c53bc87665c425f10e663eedf8858b032f (patch)
tree5897a19f7439cb090ee180062b6caeeedfa4fb68
parentd594c9ceea99d5f48747aa9102586ddb0f95ea8a (diff)
downloadrust-61d4f5c53bc87665c425f10e663eedf8858b032f.tar.gz
rust-61d4f5c53bc87665c425f10e663eedf8858b032f.zip
Fix `htmldocck` function
-rw-r--r--src/tools/run-make-support/src/lib.rs2
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
 }