[libc-commits] [libc] [libc][docs] Fix libc docs build post #129138 (PR #130184)
Aiden Grossman via libc-commits
libc-commits at lists.llvm.org
Thu Mar 6 14:02:56 PST 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/130184
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.
>From 3cded53e0009afde6670ba1953270cc9d0a90282 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Thu, 6 Mar 2025 22:01:04 +0000
Subject: [PATCH] [libc][docs] Fix libc docs build post #129138
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.
---
libc/docs/headers/stdfix.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
-------------------
More information about the libc-commits
mailing list