mirror of
https://github.com/systemd/systemd.git
synced 2025-01-09 01:18:19 +03:00
Move growfs+makefs to src/growfs/
Those two programs are used together and it makes sense to keep them together. makefs is smaller, so name the directory after growfs.
This commit is contained in:
parent
cf8fd7148c
commit
a32e1f8896
@ -2366,6 +2366,7 @@ subdir('src/fsck')
|
||||
subdir('src/fstab-generator')
|
||||
subdir('src/getty-generator')
|
||||
subdir('src/gpt-auto-generator')
|
||||
subdir('src/growfs')
|
||||
subdir('src/hibernate-resume')
|
||||
subdir('src/home')
|
||||
subdir('src/hostname')
|
||||
|
12
src/growfs/meson.build
Normal file
12
src/growfs/meson.build
Normal file
@ -0,0 +1,12 @@
|
||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
|
||||
executables += [
|
||||
libexec_template + {
|
||||
'name' : 'systemd-growfs',
|
||||
'sources' : files('growfs.c'),
|
||||
},
|
||||
libexec_template + {
|
||||
'name' : 'systemd-makefs',
|
||||
'sources' : files('makefs.c'),
|
||||
},
|
||||
]
|
@ -1,14 +1,6 @@
|
||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
|
||||
executables += [
|
||||
libexec_template + {
|
||||
'name' : 'systemd-growfs',
|
||||
'sources' : files('growfs.c'),
|
||||
},
|
||||
libexec_template + {
|
||||
'name' : 'systemd-makefs',
|
||||
'sources' : files('makefs.c'),
|
||||
},
|
||||
executable_template + {
|
||||
'name' : 'systemd-repart',
|
||||
'public' : true,
|
||||
|
Loading…
Reference in New Issue
Block a user