diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2024-12-05 15:16:43 +0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2024-12-05 15:36:23 +0800 |
commit | 00de38e531f55ca095910e655a0666ccb33fb6f6 (patch) | |
tree | 2ee89f858dee0ddc3de09dcce05a23c78ef6e406 /misc/Makefile | |
parent | 776938e8b8dcf2b59998979e91cc0f9db7d771a8 (diff) | |
download | glibc-00de38e531f55ca095910e655a0666ccb33fb6f6.zip glibc-00de38e531f55ca095910e655a0666ccb33fb6f6.tar.gz glibc-00de38e531f55ca095910e655a0666ccb33fb6f6.tar.bz2 |
Fix and sort variables in Makefiles
Fix variables in Makefiles:
1. There is a tab, not a space, between "variable" and =, +=, :=.
2. The last entry doesn't have a trailing \.
and sort them.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'misc/Makefile')
-rw-r--r-- | misc/Makefile | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/misc/Makefile b/misc/Makefile index a932b1a..acd247f 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -23,62 +23,62 @@ subdir := misc include ../Makeconfig -headers := \ - sys/uio.h \ +headers := \ + a.out.h \ + ar.h \ + bits/err-ldbl.h \ + bits/error-ldbl.h \ + bits/error.h \ + bits/hwcap.h \ + bits/ioctl-types.h \ + bits/ioctls.h \ + bits/mman.h \ + bits/param.h \ + bits/select-decl.h \ + bits/select.h \ + bits/select2.h \ + bits/stab.def \ + bits/syslog-decl.h \ + bits/syslog-ldbl.h \ + bits/syslog-path.h \ + bits/syslog.h \ + bits/sysmacros.h \ + bits/types/struct_iovec.h \ bits/uio-ext.h \ bits/uio_lim.h \ - sys/ioctl.h \ - bits/ioctls.h \ - bits/ioctl-types.h \ - sys/ptrace.h \ - sys/file.h \ - sys/dir.h \ - sys/cdefs.h \ - ar.h \ - a.out.h \ + err.h \ + error.h \ + fstab.h \ libgen.h \ - stab.h \ - bits/stab.def \ - sgtty.h \ - ttyent.h \ + mntent.h \ paths.h \ - sys/reboot.h \ + regexp.h \ + search.h \ + sgtty.h \ + stab.h \ + sys/auxv.h \ + sys/cdefs.h \ + sys/dir.h \ + sys/file.h \ + sys/ioctl.h \ sys/mman.h \ sys/param.h \ - bits/param.h \ - fstab.h \ - mntent.h \ - search.h \ - err.h \ - error.h \ + sys/ptrace.h \ sys/queue.h \ - sysexits.h \ - syscall.h \ - sys/syscall.h \ - sys/swap.h \ + sys/reboot.h \ sys/select.h \ + sys/single_threaded.h \ + sys/swap.h \ + sys/syscall.h \ sys/sysinfo.h \ - regexp.h \ - bits/select.h \ - bits/mman.h \ - sys/xattr.h \ - syslog.h \ sys/syslog.h \ - bits/syslog-decl.h \ - bits/syslog.h \ - bits/syslog-ldbl.h \ - bits/syslog-path.h \ - bits/error.h \ - bits/select-decl.h \ - bits/select2.h \ - bits/hwcap.h \ - sys/auxv.h \ sys/sysmacros.h \ - bits/sysmacros.h \ - bits/types/struct_iovec.h \ - bits/err-ldbl.h \ - bits/error-ldbl.h \ - sys/single_threaded.h \ + sys/uio.h \ + sys/xattr.h \ + syscall.h \ + sysexits.h \ + syslog.h \ + ttyent.h \ # headers routines := \ |