Skip to content

Commit 6d5ceca

Browse files
ikegami-tigaw
authored andcommitted
plugins: sort subdir list as alphabetical order
This is to find easily the sub-commands name from the help list. Signed-off-by: Tokunori Ikegami <[email protected]>
1 parent 0d80180 commit 6d5ceca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plugins/meson.build

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# SPDX-License-Identifier: GPL-2.0-or-later
22

3-
if json_c_dep.found()
4-
subdir('solidigm')
5-
endif
6-
73
sources += [
84
'plugins/amzn/amzn-nvme.c',
95
'plugins/dapustor/dapustor-nvme.c',
@@ -34,9 +30,13 @@ sources += [
3430
'plugins/zns/zns.c',
3531
]
3632

37-
subdir('ocp')
3833
subdir('lm')
34+
subdir('ocp')
3935

4036
if conf.get('HAVE_SED_OPAL') != 0
4137
subdir('sed')
4238
endif
39+
40+
if json_c_dep.found()
41+
subdir('solidigm')
42+
endif

0 commit comments

Comments
 (0)