diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2015-06-09 14:01:06 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2015-06-09 14:01:06 +0200 |
commit | 3712e1249b4ae46e0cf7ce96d1c48509d1662d53 (patch) | |
tree | 57a562d2da6bc9b0e5bedfd2c435ca41d27be9a4 | |
parent | edee1cf62636f54431c1d6f3468caacea2e6077c (diff) |
build-sys: always dist *.policy.in files
Unconditionally dist org.freedesktop.{import1,machine1}.policy.in, like all the
other *.policy.in files. This avoids missing policy files in the tarball.
Spotted by "make distcheck" failure with --disable-importd.
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index 7603b2c0e1..5d30d7d51c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5176,9 +5176,6 @@ dist_dbuspolicy_DATA += \ polkitpolicy_files += \ src/machine/org.freedesktop.machine1.policy -polkitpolicy_in_files += \ - src/machine/org.freedesktop.machine1.policy.in - dist_zshcompletion_DATA += \ shell-completion/zsh/_machinectl \ shell-completion/zsh/_sd_machines @@ -5211,6 +5208,9 @@ lib_LTLIBRARIES += \ endif +polkitpolicy_in_files += \ + src/machine/org.freedesktop.machine1.policy.in + EXTRA_DIST += \ units/systemd-machined.service.in @@ -5359,9 +5359,6 @@ dist_dbuspolicy_DATA += \ polkitpolicy_files += \ src/import/org.freedesktop.import1.policy -polkitpolicy_in_files += \ - src/import/org.freedesktop.import1.policy.in - manual_tests += \ test-qcow2 @@ -5387,6 +5384,9 @@ endif endif +polkitpolicy_in_files += \ + src/import/org.freedesktop.import1.policy.in + EXTRA_DIST += \ units/systemd-importd.service.in \ src/resolve/resolved.conf.in |