diff options
-rw-r--r-- | meta/recipes-extended/ltp/ltp/fcntl-fix-the-time-def-to-use-time_t.patch | 28 | ||||
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20160126.bb | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp/fcntl-fix-the-time-def-to-use-time_t.patch b/meta/recipes-extended/ltp/ltp/fcntl-fix-the-time-def-to-use-time_t.patch new file mode 100644 index 0000000000..f7e805a954 --- /dev/null +++ b/meta/recipes-extended/ltp/ltp/fcntl-fix-the-time-def-to-use-time_t.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From 9590d073d3abe02fe0783ef8c530aef2e873ba9b Mon Sep 17 00:00:00 2001 | ||
2 | From: Christopher Larson <chris_larson@mentor.com> | ||
3 | Date: Tue, 13 Dec 2016 12:48:29 -0700 | ||
4 | Subject: [PATCH] fcntl: fix the time() def to use time_t | ||
5 | |||
6 | This fixes the build on X32, where long is 32-bit rather than 64-bit. | ||
7 | |||
8 | Signed-off-by: Christopher Larson <chris_larson@mentor.com> | ||
9 | --- | ||
10 | testcases/kernel/syscalls/fcntl/fcntl14.c | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/testcases/kernel/syscalls/fcntl/fcntl14.c b/testcases/kernel/syscalls/fcntl/fcntl14.c | ||
14 | index 3b36572..65ac8fa 100644 | ||
15 | --- a/testcases/kernel/syscalls/fcntl/fcntl14.c | ||
16 | +++ b/testcases/kernel/syscalls/fcntl/fcntl14.c | ||
17 | @@ -789,7 +789,7 @@ void dochild(void) | ||
18 | |||
19 | void run_test(int file_flag, int file_mode, int seek, int start, int end) | ||
20 | { | ||
21 | - extern long time(); | ||
22 | + extern time_t time(); | ||
23 | |||
24 | /* reset fail to 0 for each run_test call */ | ||
25 | fail = 0; | ||
26 | -- | ||
27 | 2.8.0 | ||
28 | |||
diff --git a/meta/recipes-extended/ltp/ltp_20160126.bb b/meta/recipes-extended/ltp/ltp_20160126.bb index 6e2ceac0e2..72d465bed3 100644 --- a/meta/recipes-extended/ltp/ltp_20160126.bb +++ b/meta/recipes-extended/ltp/ltp_20160126.bb | |||
@@ -65,6 +65,7 @@ SRC_URI = "git://github.com/linux-test-project/ltp.git \ | |||
65 | file://0036-testcases-network-nfsv4-acl-acl1.c-Security-fix-on-s.patch \ | 65 | file://0036-testcases-network-nfsv4-acl-acl1.c-Security-fix-on-s.patch \ |
66 | file://0037-containers-netns_netlink-Avoid-segmentation-fault.patch \ | 66 | file://0037-containers-netns_netlink-Avoid-segmentation-fault.patch \ |
67 | file://0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch \ | 67 | file://0038-run-posix-option-group-test-replace-CWD-qith-PWD.patch \ |
68 | file://fcntl-fix-the-time-def-to-use-time_t.patch \ | ||
68 | " | 69 | " |
69 | 70 | ||
70 | S = "${WORKDIR}/git" | 71 | S = "${WORKDIR}/git" |