diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-09-17 11:02:02 -0500 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-09-17 11:02:54 -0500 |
commit | 1731e34a4ebddf6e1247ad252c7a45c2c1163f42 (patch) | |
tree | b7497dda00d6f96dd794a49c12befdc73bfb7520 /Makefile.am | |
parent | f485606bf8957d2954cf6fa5b0aabd5c39db15c1 (diff) |
tmpfiles: support simple specifier expansion for specified paths
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index b69d66da18..af12fa5912 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1542,12 +1542,15 @@ EXTRA_DIST += \ # ------------------------------------------------------------------------------ if ENABLE_TMPFILES systemd_tmpfiles_SOURCES = \ - src/tmpfiles/tmpfiles.c + src/tmpfiles/tmpfiles.c \ + src/shared/specifier.c \ + src/shared/specifier.h systemd_tmpfiles_LDADD = \ libsystemd-label.la \ libsystemd-shared.la \ - libsystemd-capability.la + libsystemd-capability.la \ + libsystemd-id128-internal.la rootbin_PROGRAMS += \ systemd-tmpfiles |