diff options
author | Carlos O'Donell <carlos@redhat.com> | 2023-05-11 06:46:27 -0400 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2023-05-16 07:17:19 -0400 |
commit | e475bc2507d82700b8a807d968f89e94301f15cb (patch) | |
tree | 7791e0ea39b71fa072d46e6754e080ff33753781 /debug | |
parent | aa492359f1c9aae235ace2a6fe1e414f73718d00 (diff) | |
download | glibc-e475bc2507d82700b8a807d968f89e94301f15cb.tar glibc-e475bc2507d82700b8a807d968f89e94301f15cb.tar.gz glibc-e475bc2507d82700b8a807d968f89e94301f15cb.tar.bz2 glibc-e475bc2507d82700b8a807d968f89e94301f15cb.zip |
debug: Reformat Makefile.
Fix list terminator whitspace.
Sort using scripts/sort-makefile-lines.py.
No code generation changes observed in binary artifacts.
No regressions on x86_64 and i686.
Diffstat (limited to 'debug')
-rw-r--r-- | debug/Makefile | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/debug/Makefile b/debug/Makefile index a8b4036cdc..096df27aeb 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -29,6 +29,7 @@ headers := execinfo.h # login/Makefile instead. If that subdir is omitted from the # build, its _FORTIFY_SOURCE support will be too. routines = \ + $(static-only-routines) \ ____longjmp_chk \ asprintf_chk \ backtrace \ @@ -113,7 +114,6 @@ routines = \ wmempcpy_chk \ wmemset_chk \ wprintf_chk \ - $(static-only-routines) \ # routines static-only-routines := stack_chk_fail_local @@ -267,23 +267,25 @@ CFLAGS-tst-ssp-1.c += -fstack-protector-all CFLAGS-tst-sprintf-fortify-unchecked.c = \ -fno-builtin-vsprintf -fno-builtin-__vsprintf_chk -tests = backtrace-tst \ - tst-longjmp_chk \ - test-strcpy_chk \ - test-stpcpy_chk \ - tst-longjmp_chk2 \ - tst-backtrace2 \ - tst-backtrace3 \ - tst-backtrace4 \ - tst-backtrace5 \ - tst-backtrace6 \ - tst-realpath-chk \ - tst-sprintf-fortify-unchecked \ - $(tests-all-chk) +tests = \ + $(tests-all-chk) \ + backtrace-tst \ + test-stpcpy_chk \ + test-strcpy_chk \ + tst-backtrace2 \ + tst-backtrace3 \ + tst-backtrace4 \ + tst-backtrace5 \ + tst-backtrace6 \ + tst-longjmp_chk \ + tst-longjmp_chk2 \ + tst-realpath-chk \ + tst-sprintf-fortify-unchecked \ + # tests tests-time64 += \ - $(tests-all-time64-chk) \ - # tests-time64 + $(tests-all-time64-chk) \ + # tests-time64 ifeq ($(have-ssp),yes) tests += tst-ssp-1 |