blob: 17513185da1729a4cb272e646e44fb0ceacb99c2 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From 72ea5410909aef6b6aee70e7f9a88d534583aa00 Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Ting Liu <b28495@freescale.com>
3Date: Wed, 19 Dec 2012 04:39:57 -0600
Brad Bishop316dfdd2018-06-25 12:45:53 -04004Subject: [PATCH 10/27] eglibc: run libm-err-tab.pl with specific dirs in ${S}
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005
6libm-err-tab.pl will parse all the files named "libm-test-ulps"
7in the given dir recursively. To avoid parsing the one in
8${S}/.pc/ (it does exist after eglibc adds aarch64 support,
9${S}/.pc/aarch64-0001-glibc-fsf-v1-eaf6f205.patch/ports/sysdeps/
10aarch64/libm-test-ulps), run libm-err-tab.pl with specific dirs
11in ${S}.
12
Patrick Williamsc0f7c042017-02-23 20:41:17 -060013Upstream-Status: inappropriate [OE specific]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
15Signed-off-by: Ting Liu <b28495@freescale.com>
16---
17 manual/Makefile | 3 ++-
18 1 file changed, 2 insertions(+), 1 deletion(-)
19
20diff --git a/manual/Makefile b/manual/Makefile
Brad Bishop316dfdd2018-06-25 12:45:53 -040021index c2756640a7..1b5bb16a96 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022--- a/manual/Makefile
23+++ b/manual/Makefile
Brad Bishop316dfdd2018-06-25 12:45:53 -040024@@ -102,7 +102,8 @@ $(objpfx)libm-err.texi: $(objpfx)stamp-libm-err
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025 $(objpfx)stamp-libm-err: libm-err-tab.pl $(wildcard $(foreach dir,$(sysdirs),\
26 $(dir)/libm-test-ulps))
27 pwd=`pwd`; \
28- $(PERL) $< $$pwd/.. > $(objpfx)libm-err-tmp
29+ $(PERL) $< $$pwd/../ports > $(objpfx)libm-err-tmp
30+ $(PERL) $< $$pwd/../sysdeps >> $(objpfx)libm-err-tmp
31 $(move-if-change) $(objpfx)libm-err-tmp $(objpfx)libm-err.texi
32 touch $@
33
34--
Brad Bishop316dfdd2018-06-25 12:45:53 -0400352.16.1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036