diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-12-08 00:28:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-20 20:00:08 +0100 |
commit | a4c35b6b4d8457e15caa3fe18ce8050918932d00 (patch) | |
tree | 317c67da81641d44a2a2b3b627833f2be07853c3 /Makefile.am | |
parent | 72d17ce680a22b958b4c074f62d9fa44bc1f54e0 (diff) |
nspawn: split out VolatileMode definitions
This moves the VolatileMode enum and its helper functions to src/shared/. This
is useful to then reuse them to implement systemd.volatile= in a later commit.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index d75807a9f9..56b8aa3fe8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1065,7 +1065,9 @@ libshared_la_SOURCES = \ src/shared/nsflags.h \ src/shared/nsflags.c \ src/shared/dissect-image.c \ - src/shared/dissect-image.h + src/shared/dissect-image.h \ + src/shared/volatile-util.c \ + src/shared/volatile-util.h if HAVE_UTMP libshared_la_SOURCES += \ |