]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
assert: Reformat Makefile.
authorCarlos O'Donell <carlos@redhat.com>
Thu, 18 May 2023 16:56:45 +0000 (12:56 -0400)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Thu, 13 Feb 2025 18:32:59 +0000 (13:32 -0500)
Reflow all long lines adding comment terminators.
Sort all reflowed text using scripts/sort-makefile-lines.py.

No code generation changes observed in binary artifacts.
No regressions on x86_64 and i686.

(cherry picked from commit ebd928224a138d4560dc0be3ef162162d62a9e43)

 # Conflicts:
 # assert/Makefile
 (Missing __libc_assert_fail)

assert/Makefile

index f7cf8e9b77939aefbd399a5615de4c1f9f4ca535..d2deec69a0a7de81cb08ecdb200bcf25d4cc9e15 100644 (file)
@@ -22,10 +22,22 @@ subdir      := assert
 
 include ../Makeconfig
 
-headers        := assert.h
-
-routines := assert assert-perr __assert
-tests := test-assert test-assert-perr tst-assert-c++ tst-assert-g++
+headers := \
+  assert.h
+  # headers
+
+routines := \
+  __assert \
+  assert \
+  assert-perr \
+  # routines
+
+tests := \
+  test-assert \
+  test-assert-perr \
+  tst-assert-c++ \
+  tst-assert-g++ \
+  # tests
 
 ifeq ($(have-cxx-thread_local),yes)
 CFLAGS-tst-assert-c++.o = -std=c++11
@@ -33,7 +45,10 @@ LDLIBS-tst-assert-c++ = -lstdc++
 CFLAGS-tst-assert-g++.o = -std=gnu++11
 LDLIBS-tst-assert-g++ = -lstdc++
 else
-tests-unsupported += tst-assert-c++ tst-assert-g++
+tests-unsupported += \
+  tst-assert-c++ \
+  tst-assert-g++ \
+  # tests-unsupported
 endif
 
 include ../Rules