summaryrefslogtreecommitdiffstats
path: root/posix-compliance/wscript
diff options
context:
space:
mode:
authorMarçal Comajoan Cara <mcomajoancara@gmail.com>2018-12-09 19:53:33 +0100
committerJoel Sherrill <joel@rtems.org>2018-12-09 17:05:16 -0600
commit048b03ea607b42a5cc348b7b867ba18fad12e0a4 (patch)
treea21c884c88a414d6cfc6fa2c0da60a0b3d787205 /posix-compliance/wscript
parentFix error messages when Sphinx version cannot be checked. (diff)
downloadrtems-docs-048b03ea607b42a5cc348b7b867ba18fad12e0a4.tar.bz2
posix-compliance: Change utimes() from sys/times.h to sys/time.h
In the RTEMS POSIX 1003.1 Compliance Guide it says: The following methods and variables in <sys/times.h> are supported: - times() - utimes() But according to the official POSIX Specifications http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_times.h.html, <sys/times.h> only declares times(), and utimes() is decleared by <sys/time.h> (notice that it's time, not times) according to http://pubs.opengroup.org/onlinepubs/9699919799/functions/utimensat.html and http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_time.h.html. This patch fixes this error. This work was part of GCI 2018.
Diffstat (limited to 'posix-compliance/wscript')
-rw-r--r--posix-compliance/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/posix-compliance/wscript b/posix-compliance/wscript
index 06eb7a0..376ee76 100644
--- a/posix-compliance/wscript
+++ b/posix-compliance/wscript
@@ -28,6 +28,6 @@ def gen_posix_rst(task):
def build(ctx):
ctx(rule = gen_posix_rst,
- source = ['posix_rst.py', 'RTEMS-Standards-Compliance-v4.csv'],
+ source = ['posix_rst.py', 'RTEMS-Standards-Compliance-v4a.csv'],
target = 'generated-posix-compliance.rst')
doc_build(ctx, extra_source = ['generated-posix-compliance.rst'])