[glibc/release/2.38/master] x86-64: Fix indentation in Makefile (use tabs, not spaces)
"H.J. Lu via Glibc-cvs" <[email protected]>
| Newsgroups | gmane.comp.lib.glibc.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2fb4d178286a1551a57fa91f7e9b59e9680ab05a commit 2fb4d178286a1551a57fa91f7e9b59e9680ab05a Author: Tianyu Chen <[email protected]> Date: Mon Apr 20 14:05:29 2026 +0800 x86-64: Fix indentation in Makefile (use tabs, not spaces) The previous commit c69b88fc71aa5657662c5c4f176a51034b029ac4 introduced incorrect indentation in sysdeps/x86_64/Makefile by using spaces where Makefile rules require tabs. Replace the leading spaces with the proper tab characters so the command lines are recognized correctly by make. Reviewed-by: H.J. Lu <[email protected]> Diff: --- sysdeps/x86_64/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sysdeps/x86_64/Makefile b/sysdeps/x86_64/Makefile index d83109b632..a7f26ac0a9 100644 --- a/sysdeps/x86_64/Makefile +++ b/sysdeps/x86_64/Makefile @@ -175,9 +175,9 @@ endif tests-special += $(objpfx)check-dt-x86-64-plt.out $(objpfx)check-dt-x86-64-plt.out: $(common-objpfx)libc.so - LC_ALL=C $(READELF) -V -W $< \ - | sed -ne '/.gnu.version_d/, /.gnu.version_r/ p' \ - | grep GLIBC_ABI_DT_X86_64_PLT > $@; \ + LC_ALL=C $(READELF) -V -W $< \ + | sed -ne '/.gnu.version_d/, /.gnu.version_r/ p' \ + | grep GLIBC_ABI_DT_X86_64_PLT > $@; \ $(evaluate-test) generated += check-dt-x86-64-plt.out endif # $(subdir) == elf