diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | math/Makefile | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2018-01-02 Joseph Myers <joseph@codesourcery.com> + + * math/Makefile (run-regen-ulps): Add $(objpfx) to test name here. + (regen-ulps): Use $(libm-tests) not $^ in shell loop. + 2018-01-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com> * NEWS: Add cosf and sincosf to list of optimized functions. diff --git a/math/Makefile b/math/Makefile index e966c9889e..4c8703c71e 100644 --- a/math/Makefile +++ b/math/Makefile @@ -521,12 +521,12 @@ include $(o-iterator) run-regen-ulps = $(test-wrapper-env) \ $(run-program-env) \ - $($*-ENV) $(rtld-prefix) $${run} + $($*-ENV) $(rtld-prefix) $(objpfx)$${run} regen-ulps: $(addprefix $(objpfx),$(libm-tests)) rm -f $(objpfx)ULPs; rm -f $(objpfx)NewUlps; \ cp $(ulps-file) $(objpfx)libm-test-ulps; \ - for run in $^; do \ + for run in $(libm-tests); do \ echo "Regenerating ULPs for $${run}"; \ $(run-regen-ulps) -u -o $(objpfx); \ cat $(objpfx)ULPs >> $(objpfx)libm-test-ulps; \ |