1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-10 01:17:44 +03:00

meson: fix indentation

This commit is contained in:
Yu Watanabe 2021-01-01 06:46:05 +09:00
parent 5acb3cabd1
commit c5abccfa58
4 changed files with 9 additions and 11 deletions

View File

@ -7,8 +7,9 @@ systemd_coredump_sources = files('''
'''.split()) '''.split())
if conf.get('HAVE_ELFUTILS') == 1 if conf.get('HAVE_ELFUTILS') == 1
systemd_coredump_sources += files(['stacktrace.c', systemd_coredump_sources += files(
'stacktrace.h']) 'stacktrace.c',
'stacktrace.h')
endif endif
coredumpctl_sources = files('coredumpctl.c') coredumpctl_sources = files('coredumpctl.c')

View File

@ -16,10 +16,9 @@ libsystemd_journal_remote_sources = files('''
'''.split()) '''.split())
if conf.get('HAVE_MICROHTTPD') == 1 if conf.get('HAVE_MICROHTTPD') == 1
libsystemd_journal_remote_sources += files(''' libsystemd_journal_remote_sources += files(
microhttpd-util.h 'microhttpd-util.h',
microhttpd-util.c 'microhttpd-util.c')
'''.split())
endif endif
libsystemd_journal_remote = static_library( libsystemd_journal_remote = static_library(

View File

@ -323,10 +323,9 @@ if conf.get('HAVE_KMOD') == 1
endif endif
if conf.get('HAVE_PAM') == 1 if conf.get('HAVE_PAM') == 1
shared_sources += files(''' shared_sources += files(
pam-util.c 'pam-util.c',
pam-util.h 'pam-util.h')
'''.split())
endif endif
if conf.get('ENABLE_NSCD') == 1 if conf.get('ENABLE_NSCD') == 1

View File

@ -42,7 +42,6 @@ install_headers(
'_sd-common.h', '_sd-common.h',
subdir : 'systemd') subdir : 'systemd')
############################################################ ############################################################
opts = [['c'], opts = [['c'],