]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: fix indentation
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 31 Dec 2020 21:46:05 +0000 (06:46 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Jan 2021 22:04:19 +0000 (07:04 +0900)
src/coredump/meson.build
src/journal-remote/meson.build
src/shared/meson.build
src/systemd/meson.build

index cee38365e482fc9e986568b25bb9e58b18384988..c63760d4a958df5eaad60faaadc719a900be551d 100644 (file)
@@ -7,8 +7,9 @@ systemd_coredump_sources = files('''
 '''.split())
 
 if conf.get('HAVE_ELFUTILS') == 1
-        systemd_coredump_sources += files(['stacktrace.c',
-                                           'stacktrace.h'])
+        systemd_coredump_sources += files(
+                'stacktrace.c',
+                'stacktrace.h')
 endif
 
 coredumpctl_sources = files('coredumpctl.c')
index 940cef30408c5597304d27543f89d839d5747809..67828c95fef9f50c732147e5c27211bf80abd7ea 100644 (file)
@@ -16,10 +16,9 @@ libsystemd_journal_remote_sources = files('''
 '''.split())
 
 if conf.get('HAVE_MICROHTTPD') == 1
-        libsystemd_journal_remote_sources += files('''
-                microhttpd-util.h
-                microhttpd-util.c
-'''.split())
+        libsystemd_journal_remote_sources += files(
+                'microhttpd-util.h',
+                'microhttpd-util.c')
 endif
 
 libsystemd_journal_remote = static_library(
index 6db9065794a48168c47ec15720d6c3d57b6334b8..62270d9fd18f61e60e53f9770b25c435b79df788 100644 (file)
@@ -323,10 +323,9 @@ if conf.get('HAVE_KMOD') == 1
 endif
 
 if conf.get('HAVE_PAM') == 1
-        shared_sources += files('''
-        pam-util.c
-        pam-util.h
-'''.split())
+        shared_sources += files(
+                'pam-util.c',
+                'pam-util.h')
 endif
 
 if conf.get('ENABLE_NSCD') == 1
index 3d328e5fd31582df320cd147bbfd310205d880ba..e01281f4547b09215752ebe89f66f22e68ec1d01 100644 (file)
@@ -42,7 +42,6 @@ install_headers(
         '_sd-common.h',
         subdir : 'systemd')
 
-
 ############################################################
 
 opts = [['c'],