1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 04:26:06 +00:00

hibernate-resume: break lines in meson.build files()

This commit is contained in:
Mike Yuan 2023-09-22 21:02:55 +08:00
parent a0fe45a93f
commit 3494a8b904
No known key found for this signature in database
GPG Key ID: 417471C0A40F58B3

View File

@ -4,11 +4,17 @@ executables += [
generator_template + {
'name' : 'systemd-hibernate-resume-generator',
'conditions' : ['ENABLE_HIBERNATE'],
'sources' : files('hibernate-resume-generator.c', 'hibernate-resume-config.c'),
'sources' : files(
'hibernate-resume-generator.c',
'hibernate-resume-config.c',
),
},
libexec_template + {
'name' : 'systemd-hibernate-resume',
'conditions' : ['ENABLE_HIBERNATE'],
'sources' : files('hibernate-resume.c', 'hibernate-resume-config.c'),
'sources' : files(
'hibernate-resume.c',
'hibernate-resume-config.c',
),
},
]