Skip to content

Commit

Permalink
meson: replace generic array with files()
Browse files Browse the repository at this point in the history
The latter is more restrictive.

Signed-off-by: Rosen Penev <[email protected]>
  • Loading branch information
neheb committed Apr 1, 2024
1 parent e6e2ead commit 280b89d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if cdata.get('HAVE_IRQBALANCEUI')
install_man('irqbalance-ui.1')
endif

irqbalance_sources = [
irqbalance_sources = files(
'activate.c',
'bitmap.c',
'classify.c',
Expand All @@ -50,12 +50,12 @@ irqbalance_sources = [
'numa.c',
'placement.c',
'procinterrupts.c',
]
)

if libnl_3_dep.found() and libnl_genl_3_dep.found()
irqbalance_sources += [
irqbalance_sources += files(
'thermal.c',
]
)
endif

executable(
Expand Down

0 comments on commit 280b89d

Please sign in to comment.