0013-eglibc-run-libm-err-tab.pl-with-specific-dirs-in-S.patch 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. From c5047b8f7d1a17324cfa02b99f07a70ebcec2cf2 Mon Sep 17 00:00:00 2001
  2. From: Ting Liu <b28495@freescale.com>
  3. Date: Wed, 19 Dec 2012 04:39:57 -0600
  4. Subject: [PATCH] eglibc: run libm-err-tab.pl with specific dirs in ${S}
  5. libm-err-tab.pl will parse all the files named "libm-test-ulps"
  6. in the given dir recursively. To avoid parsing the one in
  7. ${S}/.pc/ (it does exist after eglibc adds aarch64 support,
  8. ${S}/.pc/aarch64-0001-glibc-fsf-v1-eaf6f205.patch/ports/sysdeps/
  9. aarch64/libm-test-ulps), run libm-err-tab.pl with specific dirs
  10. in ${S}.
  11. Upstream-Status: inappropriate [OE specific]
  12. Signed-off-by: Ting Liu <b28495@freescale.com>
  13. ---
  14. manual/Makefile | 3 ++-
  15. 1 file changed, 2 insertions(+), 1 deletion(-)
  16. diff --git a/manual/Makefile b/manual/Makefile
  17. index e83444341e..aa2645bc55 100644
  18. --- a/manual/Makefile
  19. +++ b/manual/Makefile
  20. @@ -103,7 +103,8 @@ $(objpfx)stamp-libm-err: $(..)math/gen-libm-test.py \
  21. $(wildcard $(foreach dir,$(sysdirs),\
  22. $(dir)/libm-test-ulps))
  23. pwd=`pwd`; \
  24. - $(PYTHON) $< -s $$pwd/.. -m $(objpfx)libm-err-tmp
  25. + $(PYTHON) $< -s $$pwd/../ports -m $(objpfx)libm-err-tmp
  26. + $(PYTHON) $< -s $$pwd/../sysdeps -m $(objpfx)libm-err-tmp
  27. $(move-if-change) $(objpfx)libm-err-tmp $(objpfx)libm-err.texi
  28. touch $@