[libc-commits] [libc] [libc][docs] Fix libc docs build post #129138 (PR #130184)
via libc-commits
libc-commits at lists.llvm.org
Thu Mar 6 14:03:30 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Aiden Grossman (boomanaiden154)
<details>
<summary>Changes</summary>
The docs build action was failing with libc due to checks.rst not existing in the expected path. This patch adjusts the path to the actual path which seems to make everything happy. It seems like this did not show up before as stdfix.rst was not included in a place that actually caused it to get picked up by sphinx.
---
Full diff: https://github.com/llvm/llvm-project/pull/130184.diff
1 Files Affected:
- (modified) libc/docs/headers/stdfix.rst (+1-1)
``````````diff
diff --git a/libc/docs/headers/stdfix.rst b/libc/docs/headers/stdfix.rst
index 3b93f29a4abdc..5189439c63306 100644
--- a/libc/docs/headers/stdfix.rst
+++ b/libc/docs/headers/stdfix.rst
@@ -2,7 +2,7 @@
StdFix Functions
================
-.. include:: ../../check.rst
+.. include:: ../check.rst
Standards and Goals
-------------------
``````````
</details>
https://github.com/llvm/llvm-project/pull/130184
More information about the libc-commits
mailing list