blob: c983733dcbe1174b31fb58da3a91d473d463fd24 [file] [log] [blame]
Andrew Geissler517393d2023-01-13 08:55:19 -06001From 12ba95281d0bbea3576350d635b4dee0f953b94a Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 29 Nov 2022 18:38:07 -0800
4Subject: [PATCH] libau: Do not build LFS version of readdir
5
6rdu64 is providing largefile supported version of readdir and readdir_r
7however, we enable largefile support unconditionally in OE therefore its
8not needed since readdir() and readdir_r() are already LFS capable
9
10Upstream-Status: Inappropriate [OE-Specific]
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13---
14 libau/Makefile | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/libau/Makefile b/libau/Makefile
18index 9ada831..1fd1ccc 100644
19--- a/libau/Makefile
20+++ b/libau/Makefile
21@@ -30,7 +30,7 @@ STRIP ?= strip
22 all: ${LibSo}
23
24 ifeq (${Glibc},yes)
25-LibSoObj += rdu64.o
26+#LibSoObj += rdu64.o
27
28 # this is unnecessary on 64bit system?
29 rdu64.c: rdu.c
30--
312.38.1
32