X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=Makefile.am;h=35bbc3a64ac1b142bf9b8bf9d783cc7d7b7bfa84;hp=a45f333ac6de25fc0390eb80d63a680d6bbc9cb4;hb=e17fb72914e328f962e5df1bf88f301c0e7fa6e1;hpb=8cf3a8a982661c0bb9b04ff27f6d486b38b1b35e diff --git a/Makefile.am b/Makefile.am index a45f333ac..35bbc3a64 100644 --- a/Makefile.am +++ b/Makefile.am @@ -119,7 +119,8 @@ rootlibexec_PROGRAMS = \ systemd-fsck \ systemd-quotacheck \ systemd-timestamp \ - systemd-ac-power + systemd-ac-power \ + systemd-sysctl if HAVE_LIBCRYPTSETUP rootlibexec_PROGRAMS += \ @@ -223,7 +224,6 @@ dist_systemunit_DATA = \ units/var-run.mount \ units/hwclock-load.service \ units/hwclock-save.service \ - units/sysctl.service \ units/remount-rootfs.service \ units/printer.target \ units/bluetooth.target \ @@ -261,6 +261,7 @@ nodist_systemunit_DATA = \ units/systemd-ask-password-wall.service \ units/systemd-ask-password-plymouth.service \ units/systemd-ask-password-console.service \ + units/systemd-sysctl.service \ units/syslog.target \ units/halt.service \ units/poweroff.service \ @@ -306,6 +307,7 @@ EXTRA_DIST = \ units/systemd-ask-password-wall.service.in \ units/systemd-ask-password-plymouth.service.in \ units/systemd-ask-password-console.service.in \ + units/systemd-sysctl.service.in \ units/syslog.target.in \ units/halt.service.in \ units/poweroff.service.in \ @@ -503,7 +505,11 @@ MANPAGES = \ man/shutdown.8 \ man/pam_systemd.8 \ man/systemd.conf.5 \ - man/tmpfiles.d.5 + man/tmpfiles.d.5 \ + man/hostname.5 \ + man/vconsole.conf.5 \ + man/locale.conf.5 \ + man/os-release.5 MANPAGES_ALIAS = \ man/reboot.8 \ @@ -713,6 +719,15 @@ systemd_tmpfiles_CFLAGS = \ systemd_tmpfiles_LDADD = \ libsystemd-basic.la +systemd_sysctl_SOURCES = \ + src/sysctl.c + +systemd_sysctl_CFLAGS = \ + $(AM_CFLAGS) + +systemd_sysctl_LDADD = \ + libsystemd-basic.la + systemd_fsck_SOURCES = \ src/fsck.c \ src/dbus-common.c @@ -762,10 +777,12 @@ systemd_cryptsetup_SOURCES = \ systemd_cryptsetup_CFLAGS = \ $(LIBCRYPTSETUP_CFLAGS) \ + $(UDEV_CFLAGS) \ $(AM_CFLAGS) systemd_cryptsetup_LDADD = \ $(LIBCRYPTSETUP_LIBS) \ + $(UDEV_LIBS) \ libsystemd-basic.la systemd_cryptsetup_generator_SOURCES = \ @@ -1227,7 +1244,7 @@ install-data-hook: systemd-modules-load.service \ systemd-random-seed-load.service \ systemd-tmpfiles-setup.service \ - sysctl.service \ + systemd-sysctl.service \ systemd-ask-password-console.path && \ $(LN_S) ../dev-hugepages.automount dev-hugepages.automount && \ $(LN_S) ../dev-mqueue.automount dev-mqueue.automount && \ @@ -1238,7 +1255,7 @@ install-data-hook: $(LN_S) ../systemd-modules-load.service systemd-modules-load.service && \ $(LN_S) ../systemd-random-seed-load.service systemd-random-seed-load.service && \ $(LN_S) ../systemd-tmpfiles-setup.service systemd-tmpfiles-setup.service && \ - $(LN_S) ../sysctl.service sysctl.service && \ + $(LN_S) ../systemd-sysctl.service systemd-sysctl.service && \ $(LN_S) ../systemd-ask-password-console.path systemd-ask-password-console.path ) ( cd $(DESTDIR)$(systemunitdir)/basic.target.wants && \ rm -f systemd-tmpfiles-clean.timer && \