summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOMOJOLA JOSHUA <omojolajoshua@gmail.com>2023-08-17 15:12:31 +0200
committerOMOJOLA JOSHUA <omojolajoshua@gmail.com>2023-08-17 23:07:16 +0200
commit5ae58e8fcaa1765e2408dc1b4b1dcc4d4eb08c99 (patch)
tree193547247348f0a52d3ca3568e383225b6c7f44c /src
parentsystemd-bsod: Add "--continuous" option (diff)
downloadsystemd-5ae58e8fcaa1765e2408dc1b4b1dcc4d4eb08c99.tar.xz
systemd-5ae58e8fcaa1765e2408dc1b4b1dcc4d4eb08c99.zip
Make systemd-bsod not a public binary
Diffstat (limited to 'src')
-rw-r--r--src/journal/meson.build15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/journal/meson.build b/src/journal/meson.build
index 3412e273e5..6ee9df68ff 100644
--- a/src/journal/meson.build
+++ b/src/journal/meson.build
@@ -72,6 +72,13 @@ executables += [
threads,
],
},
+ libexec_template + {
+ 'name' : 'systemd-bsod',
+ 'conditions' : ['HAVE_QRENCODE'],
+ 'sources' : files('bsod.c'),
+ 'link_with' : libshared,
+ 'dependencies' : libqrencode,
+ },
executable_template + {
'name' : 'systemd-cat',
'public' : true,
@@ -95,14 +102,6 @@ executables += [
threads,
],
},
- executable_template + {
- 'name' : 'systemd-bsod',
- 'conditions' : ['HAVE_QRENCODE'],
- 'public' : true,
- 'sources' : files('bsod.c'),
- 'link_with' : libshared,
- 'dependencies' : libqrencode,
- },
journal_test_template + {
'sources' : files('test-journal-append.c'),
'type' : 'manual',