From 048b03ea607b42a5cc348b7b867ba18fad12e0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=A7al=20Comajoan=20Cara?= Date: Sun, 9 Dec 2018 19:53:33 +0100 Subject: 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 are supported: - times() - utimes() But according to the official POSIX Specifications http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_times.h.html, only declares times(), and utimes() is decleared by (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. --- posix-compliance/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'posix-compliance/wscript') 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']) -- cgit v1.2.3