diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2024-02-28 05:46:40 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2024-02-28 05:48:27 -0800 |
commit | e6350be7e9cae8f71c96c1f06eab61b9acb227c8 (patch) | |
tree | 011763fd697f0e08329ebea99344d4aa48e3b4b1 | |
parent | bf9688e623262c5fa9f91e4de0e84db45025076f (diff) | |
download | glibc-e6350be7e9cae8f71c96c1f06eab61b9acb227c8.zip glibc-e6350be7e9cae8f71c96c1f06eab61b9acb227c8.tar.gz glibc-e6350be7e9cae8f71c96c1f06eab61b9acb227c8.tar.bz2 |
sysdeps/unix/sysv/linux/x86_64/Makefile: Add the end marker
Add the end marker to tests, tests-container and modules-names.
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/Makefile b/sysdeps/unix/sysv/linux/x86_64/Makefile index 4223feb..7d1d205 100644 --- a/sysdeps/unix/sysv/linux/x86_64/Makefile +++ b/sysdeps/unix/sysv/linux/x86_64/Makefile @@ -17,18 +17,21 @@ endif ifeq ($(subdir),elf) ifeq (yes,$(enable-x86-isa-level)) tests += \ - tst-glibc-hwcaps-2 + tst-glibc-hwcaps-2 \ +# tests ifeq (no,$(build-hardcoded-path-in-tests)) # This is an ld.so.cache test, and RPATH/RUNPATH in the executable # interferes with its test objectives. tests-container += \ - tst-glibc-hwcaps-2-cache + tst-glibc-hwcaps-2-cache \ +# tests-container endif modules-names += \ libx86-64-isa-level-1 \ libx86-64-isa-level-2 \ libx86-64-isa-level-3 \ - libx86-64-isa-level-4 + libx86-64-isa-level-4 \ +# modules-names $(objpfx)tst-glibc-hwcaps-2: $(objpfx)libx86-64-isa-level.so |