mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09: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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user