diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-05-01 13:30:55 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-01 13:30:55 -0700 |
commit | f5a01ca927f9141606276b05ad87974593a608a1 (patch) | |
tree | c9dd100bac61a1fb8b7ded84912d3ab8e2002120 | |
parent | 90fe4186b377c7bda6788ddd8607c9f30a027355 (diff) | |
download | glibc-f5a01ca927f9141606276b05ad87974593a608a1.tar glibc-f5a01ca927f9141606276b05ad87974593a608a1.tar.gz glibc-f5a01ca927f9141606276b05ad87974593a608a1.tar.bz2 glibc-f5a01ca927f9141606276b05ad87974593a608a1.zip |
Redirect check-localplt output to check-localplt.out.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | elf/Makefile | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2012-05-01 Roland McGrath <roland@hack.frob.com> + * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's + output to the target. + * scripts/localplt.awk: New file. * elf/Makefile ($(objpfx)check-localplt): Target removed. (check-localplt-CFLAGS): Variable removed. diff --git a/elf/Makefile b/elf/Makefile index 0b5359f49f..57dcab0685 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -958,7 +958,8 @@ $(objpfx)check-localplt.out: $(..)scripts/check-localplt.awk \ $(localplt-built-dso:=.jmprel) \ $(check-data) LC_ALL=C $(AWK) -f $(filter-out $< $(check-data),$^) | \ - LC_ALL=C $(AWK) -f $< $(check-data) - + LC_ALL=C $(AWK) -f $< $(check-data) - \ + > $@ endif $(objpfx)tst-dlopenrpathmod.so: $(libdl) |