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 /math | |
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 'math')
-rw-r--r-- | math/Makefile | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/math/Makefile b/math/Makefile index c9b2c7b..4b1706b 100644 --- a/math/Makefile +++ b/math/Makefile @@ -22,28 +22,28 @@ subdir := math include ../Makeconfig # Installed header files. -headers := \ - math.h \ - bits/mathcalls.h \ - fpu_control.h \ - complex.h \ +headers := \ bits/cmathcalls.h \ - fenv.h \ bits/fenv.h \ - bits/mathdef.h \ - tgmath.h \ - bits/math-vector.h \ - finclude/math-vector-fortran.h \ - bits/libm-simd-decl-stubs.h \ - bits/iscanonical.h \ + bits/floatn-common.h \ + bits/floatn.h \ bits/flt-eval-method.h \ bits/fp-fast.h \ bits/fp-logb.h \ + bits/iscanonical.h \ + bits/libm-simd-decl-stubs.h \ bits/long-double.h \ + bits/math-vector.h \ bits/mathcalls-helper-functions.h \ - bits/floatn.h \ - bits/floatn-common.h \ - bits/mathcalls-narrow.h + bits/mathcalls-narrow.h \ + bits/mathcalls.h \ + bits/mathdef.h \ + complex.h \ + fenv.h \ + finclude/math-vector-fortran.h \ + fpu_control.h \ + math.h \ + tgmath.h \ # headers # FPU support code. |