diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-09-24 08:56:42 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-09-25 09:06:54 -0700 |
commit | 15e6d6785ac2935bb963506b47a37b3d1f728952 (patch) | |
tree | 90dfaea25f660bf3c33e5465707479913f617b55 /elf/Makefile | |
parent | a1c056c9d06a6aa184fa3c52a5bbd3562ac386e8 (diff) | |
download | glibc-15e6d6785ac2935bb963506b47a37b3d1f728952.tar.gz |
Avoid warning: overriding recipe for .../tst-ro-dynamic-mod.so
Add tst-ro-dynamic-mod to modules-names-nobuild to avoid
../Makerules:767: warning: ignoring old recipe for target '.../elf/tst-ro-dynamic-mod.so'
This updates BZ #28340 fix.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/elf/Makefile b/elf/Makefile index 0cdccaacb3..26986c0692 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -402,8 +402,9 @@ endif modules-execstack-yes = tst-execstack-mod extra-test-objs += $(addsuffix .os,$(strip $(modules-names))) -# filtmod1.so, tst-big-note-lib.so have special rules. -modules-names-nobuild := filtmod1 tst-big-note-lib +# filtmod1.so, tst-big-note-lib.so, tst-ro-dynamic-mod.so have special +# rules. +modules-names-nobuild := filtmod1 tst-big-note-lib tst-ro-dynamic-mod tests += $(tests-static) |