1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-08 19:46:02 +01:00

meson: Get rid of multiline array formatting hack

This commit is contained in:
Sergei Zimmerman 2025-08-07 02:41:05 +03:00
parent da028aa454
commit bf80696ed9
No known key found for this signature in database
12 changed files with 0 additions and 12 deletions

View file

@ -8,7 +8,6 @@ project(
subproject_dir : 'src', subproject_dir : 'src',
default_options : [ default_options : [
'localstatedir=/nix/var', 'localstatedir=/nix/var',
# hack for trailing newline
], ],
meson_version : '>= 1.1', meson_version : '>= 1.1',
) )

View file

@ -6,5 +6,4 @@ headers = files(
'libexpr.hh', 'libexpr.hh',
'nix_api_expr.hh', 'nix_api_expr.hh',
'value/context.hh', 'value/context.hh',
# hack for trailing newline
) )

View file

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

View file

@ -1,6 +1,5 @@
sources += files( sources += files(
'personality.cc', 'personality.cc',
# hack for trailing newline
) )
subdir('include/nix/store') subdir('include/nix/store')

View file

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

View file

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

View file

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

View file

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

View file

@ -6,5 +6,4 @@ headers += files(
'signals-impl.hh', 'signals-impl.hh',
'windows-async-pipe.hh', 'windows-async-pipe.hh',
'windows-error.hh', 'windows-error.hh',
# hack for trailing newline
) )

View file

@ -7,7 +7,6 @@
nix_perl_tests = files( nix_perl_tests = files(
'init.t', 'init.t',
# hack for trailing newline
) )

View file

@ -3,7 +3,6 @@ libplugintest = shared_module(
'plugintest.cc', 'plugintest.cc',
dependencies : [ dependencies : [
dependency('nix-expr'), dependency('nix-expr'),
# hack for trailing newline
], ],
build_by_default : false, build_by_default : false,
) )

View file

@ -3,7 +3,6 @@ libstoreconsumer_tester = executable(
'main.cc', 'main.cc',
dependencies : [ dependencies : [
dependency('nix-store'), dependency('nix-store'),
# hack for trailing newline
], ],
build_by_default : false, build_by_default : false,
) )