1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-16 07:22:43 +01:00

Restore multiline formatting of lists in meson files

Applies a workaround to enforce multiline formatting
of lists to reduce code churn introduced in 93a42a5971.
This commit is contained in:
Sergei Zimmerman 2025-06-20 23:12:36 +03:00
parent 42ea2724a8
commit 6ef683cb2a
No known key found for this signature in database
GPG key ID: A9B0B557CA632325
12 changed files with 54 additions and 12 deletions

View file

@ -2,4 +2,7 @@
include_dirs += include_directories('../..')
headers += files('freebsd-jail.hh')
headers += files(
'freebsd-jail.hh',
# hack for trailing newline
)

View file

@ -1,3 +1,6 @@
sources += files('freebsd-jail.cc')
sources += files(
'freebsd-jail.cc',
# hack for trailing newline
)
subdir('include/nix/util')

View file

@ -2,4 +2,8 @@
include_dirs += include_directories('../..')
headers += files('cgroup.hh', 'linux-namespaces.hh')
headers += files(
'cgroup.hh',
'linux-namespaces.hh',
# hack for trailing newline
)

View file

@ -1,3 +1,7 @@
sources += files('cgroup.cc', 'linux-namespaces.cc')
sources += files(
'cgroup.cc',
'linux-namespaces.cc',
# hack for trailing newline
)
subdir('include/nix/util')

View file

@ -2,4 +2,9 @@
include_dirs += include_directories('../..')
headers += files('signals-impl.hh', 'windows-async-pipe.hh', 'windows-error.hh')
headers += files(
'signals-impl.hh',
'windows-async-pipe.hh',
'windows-error.hh',
# hack for trailing newline
)