summaryrefslogtreecommitdiff
path: root/src/shutdown/meson.build
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-03-05 12:12:33 +0100
committerLennart Poettering <lennart@poettering.net>2019-03-05 12:21:17 +0100
commit9e71f5d9838af32b9484d1757129c419e57866ae (patch)
tree771a1eb36a153322b6e9a943ff0b8b3ec09d7abb /src/shutdown/meson.build
parent3a736a32164672550fead7417a2159751ac94df5 (diff)
downloadsystemd-9e71f5d9838af32b9484d1757129c419e57866ae.tar.gz
shutdown: rearrange shutdown sources in source tree
Let's move the shutdown binary into its own subdirectory in src/shutdown, after all it is relatively isolated from the normal PID 1 sources, being a different binary and all. Unfortunately it's not possible to move some of the code, since it is shared with PID 1, that I wished we could move, but I still think it's worth it.
Diffstat (limited to 'src/shutdown/meson.build')
-rw-r--r--src/shutdown/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/shutdown/meson.build b/src/shutdown/meson.build
new file mode 100644
index 0000000000..ebf0bed242
--- /dev/null
+++ b/src/shutdown/meson.build
@@ -0,0 +1,5 @@
+systemd_shutdown_sources = files('''
+ shutdown.c
+ umount.c
+ umount.h
+'''.split())