Skip to content

Commit

Permalink
Renamed orch_src to ctrl_src in meson files
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Engel <[email protected]>
  • Loading branch information
engelmi committed Oct 29, 2024
1 parent 4b033a6 commit 214c8fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/controller/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
#
# SPDX-License-Identifier: LGPL-2.1-or-later

# orch build configuration
# controller build configuration

orch_src = [
ctrl_src = [
'controller.h',
'controller.c',
'node.h',
Expand All @@ -23,7 +23,7 @@ orch_src = [

executable(
'bluechi-controller',
orch_src,
ctrl_src,
dependencies: [
systemd_dep,
inih_dep,
Expand Down
2 changes: 1 addition & 1 deletion src/controller/test/controller/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ controller_src = [

# setup controller test src files to include in compilation
controller_test_src = []
foreach src : orch_src
foreach src : ctrl_src
# skip main to avoid duplicate main function error
if src == 'main.c'
continue
Expand Down

0 comments on commit 214c8fb

Please sign in to comment.