diff options
author | Philippe De Swert <philippedeswert@gmail.com> | 2014-12-31 18:02:12 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-01 09:05:46 -0500 |
commit | 699b7227a2faeb9818e90e90837794aef18f9bef (patch) | |
tree | e4dc561f41aeabef8b2456120ddac230f8f82f6e /Makefile.am | |
parent | a780d4cb1cc1443904271ae35bd4291639c7eb87 (diff) |
build-sys: fix build issue with machines.target
When doing "make clean" the unit/machines.target file gets deleted.
This causes a build error later on when trying to rebuild systemd.
V2: The file probably belongs to dist_systemunit_DATA
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 28d2e4b53f..5f80306dd3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -506,7 +506,8 @@ dist_systemunit_DATA = \ units/systemd-udevd-control.socket \ units/systemd-udevd-kernel.socket \ units/system-update.target \ - units/initrd-switch-root.target + units/initrd-switch-root.target \ + units/machines.target if ENABLE_KDBUS dist_systemunit_DATA += \ @@ -549,7 +550,6 @@ nodist_systemunit_DATA = \ units/initrd-udevadm-cleanup-db.service \ units/initrd-switch-root.service \ units/systemd-nspawn@.service \ - units/machines.target \ units/systemd-update-done.service if HAVE_UTMP |