diff options
Diffstat (limited to 'src')
94 files changed, 42 insertions, 93 deletions
diff --git a/src/busctl/Makefile b/src/busctl/Makefile index d09dd022a6..e7ef92824c 100644 --- a/src/busctl/Makefile +++ b/src/busctl/Makefile @@ -34,5 +34,4 @@ busctl_SOURCES = \ busctl_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-boot/bootctl/Makefile b/src/grp-boot/bootctl/Makefile index cc886b6cc4..ae0fd9c630 100644 --- a/src/grp-boot/bootctl/Makefile +++ b/src/grp-boot/bootctl/Makefile @@ -51,5 +51,4 @@ dist_zshcompletion_data += \ shell-completion/zsh/_bootctl endif # HAVE_BLKID endif # ENABLE_EFI -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-boot/systemd-boot/Makefile b/src/grp-boot/systemd-boot/Makefile index 8caa8cef84..2e26fa9fb9 100644 --- a/src/grp-boot/systemd-boot/Makefile +++ b/src/grp-boot/systemd-boot/Makefile @@ -187,5 +187,4 @@ test-efi: test-efi-disk.img EXTRA_DIST += test/test-efi-create-disk.sh -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-boot/systemd-boot/test-efi-create-disk.sh b/src/grp-boot/systemd-boot/test-efi-create-disk.sh new file mode 100755 index 0000000000..56dd09abd7 --- /dev/null +++ b/src/grp-boot/systemd-boot/test-efi-create-disk.sh @@ -0,0 +1,42 @@ +#!/bin/bash -e + +# create GPT table with EFI System Partition +rm -f test-efi-disk.img +dd if=/dev/null of=test-efi-disk.img bs=1M seek=512 count=1 +parted --script test-efi-disk.img "mklabel gpt" "mkpart ESP fat32 1MiB 511MiB" "set 1 boot on" + +# create FAT32 file system +LOOP=$(losetup --show -f -P test-efi-disk.img) +mkfs.vfat -F32 ${LOOP}p1 +mkdir -p mnt +mount ${LOOP}p1 mnt + +mkdir -p mnt/EFI/{Boot,systemd} +cp systemd-bootx64.efi mnt/EFI/Boot/bootx64.efi + +[ -e /boot/shellx64.efi ] && cp /boot/shellx64.efi mnt/ + +mkdir mnt/EFI/Linux +echo -n "foo=yes bar=no root=/dev/fakeroot debug rd.break=initqueue" > mnt/cmdline.txt +objcopy \ + --add-section .osrel=/etc/os-release --change-section-vma .osrel=0x20000 \ + --add-section .cmdline=mnt/cmdline.txt --change-section-vma .cmdline=0x30000 \ + --add-section .splash=test/splash.bmp --change-section-vma .splash=0x40000 \ + --add-section .linux=/boot/$(cat /etc/machine-id)/$(uname -r)/linux --change-section-vma .linux=0x2000000 \ + --add-section .initrd=/boot/$(cat /etc/machine-id)/$(uname -r)/initrd --change-section-vma .initrd=0x3000000 \ + linuxx64.efi.stub mnt/EFI/Linux/linux-test.efi + +# install entries +mkdir -p mnt/loader/entries +echo -e "timeout 3\n" > mnt/loader/loader.conf +echo -e "title Test\nefi /test\n" > mnt/loader/entries/test.conf +echo -e "title Test2\nlinux /test2\noptions option=yes word number=1000 more\n" > mnt/loader/entries/test2.conf +echo -e "title Test3\nlinux /test3\n" > mnt/loader/entries/test3.conf +echo -e "title Test4\nlinux /test4\n" > mnt/loader/entries/test4.conf +echo -e "title Test5\nefi /test5\n" > mnt/loader/entries/test5.conf +echo -e "title Test6\nlinux /test6\n" > mnt/loader/entries/test6.conf + +sync +umount mnt +rmdir mnt +losetup -d $LOOP diff --git a/src/grp-coredump/coredumpctl/Makefile b/src/grp-coredump/coredumpctl/Makefile index c300710492..5118cdcb3f 100644 --- a/src/grp-coredump/coredumpctl/Makefile +++ b/src/grp-coredump/coredumpctl/Makefile @@ -38,5 +38,4 @@ dist_bashcompletion_data += \ dist_zshcompletion_data += \ shell-completion/zsh/_coredumpctl -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-coredump/systemd-coredump/Makefile b/src/grp-coredump/systemd-coredump/Makefile index 23f2747683..c8e8d45854 100644 --- a/src/grp-coredump/systemd-coredump/Makefile +++ b/src/grp-coredump/systemd-coredump/Makefile @@ -78,5 +78,4 @@ EXTRA_DIST += \ sysctl.d/50-coredump.conf.in \ units/systemd-coredump@.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-machine/libmachine-core/Makefile b/src/grp-machine/libmachine-core/Makefile index 7dc9d419b6..e65791038a 100644 --- a/src/grp-machine/libmachine-core/Makefile +++ b/src/grp-machine/libmachine-core/Makefile @@ -47,5 +47,4 @@ test_machine_tables_LDADD = \ tests += \ test-machine-tables -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-machine/machinectl/Makefile b/src/grp-machine/machinectl/Makefile index e1cb38d8cf..924e2096de 100644 --- a/src/grp-machine/machinectl/Makefile +++ b/src/grp-machine/machinectl/Makefile @@ -39,5 +39,4 @@ dist_zshcompletion_data += \ shell-completion/zsh/_machinectl \ shell-completion/zsh/_sd_machines -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-machine/nss-mymachines/Makefile b/src/grp-machine/nss-mymachines/Makefile index 2d0248a0a3..eca80ac621 100644 --- a/src/grp-machine/nss-mymachines/Makefile +++ b/src/grp-machine/nss-mymachines/Makefile @@ -43,5 +43,4 @@ libnss_mymachines_la_LIBADD = \ lib_LTLIBRARIES += \ libnss_mymachines.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-machine/systemd-machined/Makefile b/src/grp-machine/systemd-machined/Makefile index 116b5a479c..7b6f89f907 100644 --- a/src/grp-machine/systemd-machined/Makefile +++ b/src/grp-machine/systemd-machined/Makefile @@ -64,5 +64,4 @@ polkitpolicy_in_files += \ EXTRA_DIST += \ units/systemd-machined.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-resolve/systemd-resolved/Makefile b/src/grp-resolve/systemd-resolved/Makefile index 49a995bd75..e899cfd04d 100644 --- a/src/grp-resolve/systemd-resolved/Makefile +++ b/src/grp-resolve/systemd-resolved/Makefile @@ -205,5 +205,4 @@ EXTRA_DIST += \ units/systemd-resolved.service.m4.in \ src/resolve/resolved.conf.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-system/systemctl/Makefile b/src/grp-system/systemctl/Makefile index a83c552a06..5cb8c922d9 100644 --- a/src/grp-system/systemctl/Makefile +++ b/src/grp-system/systemctl/Makefile @@ -29,5 +29,4 @@ systemctl_SOURCES = \ systemctl_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-system/systemd/Makefile b/src/grp-system/systemd/Makefile index e77395c7cf..8abfa2bf9d 100644 --- a/src/grp-system/systemd/Makefile +++ b/src/grp-system/systemd/Makefile @@ -64,5 +64,4 @@ dist_systemunit_DATA_busnames += \ BUSNAMES_TARGET_WANTS += \ org.freedesktop.systemd1.busname -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-timedate/systemd-timedated/Makefile b/src/grp-timedate/systemd-timedated/Makefile index 0224793a47..38a180bd3a 100644 --- a/src/grp-timedate/systemd-timedated/Makefile +++ b/src/grp-timedate/systemd-timedated/Makefile @@ -62,5 +62,4 @@ polkitpolicy_in_files += \ EXTRA_DIST += \ units/systemd-timedated.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/grp-timedate/timedatectl/Makefile b/src/grp-timedate/timedatectl/Makefile index c05838c944..1eb47c10b9 100644 --- a/src/grp-timedate/timedatectl/Makefile +++ b/src/grp-timedate/timedatectl/Makefile @@ -39,5 +39,4 @@ dist_bashcompletion_data += \ dist_zshcompletion_data += \ shell-completion/zsh/_timedatectl endif # ENABLE_TIMEDATED -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/hostname/Makefile b/src/hostname/Makefile index f0215ee0cc..f601560f0a 100644 --- a/src/hostname/Makefile +++ b/src/hostname/Makefile @@ -76,5 +76,4 @@ polkitpolicy_in_files += \ EXTRA_DIST += \ units/systemd-hostnamed.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/import/Makefile b/src/import/Makefile index 019350e9bb..909662b1b4 100644 --- a/src/import/Makefile +++ b/src/import/Makefile @@ -191,5 +191,4 @@ EXTRA_DIST += \ units/systemd-importd.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/initctl/Makefile b/src/initctl/Makefile index 05349ba24f..b63a2e47d9 100644 --- a/src/initctl/Makefile +++ b/src/initctl/Makefile @@ -29,5 +29,4 @@ systemd_initctl_SOURCES = \ systemd_initctl_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/journal-remote/Makefile b/src/journal-remote/Makefile index 150e326a78..a95f6ab31a 100644 --- a/src/journal-remote/Makefile +++ b/src/journal-remote/Makefile @@ -110,5 +110,4 @@ EXTRA_DIST += \ units/systemd-journal-upload.service.in \ src/journal-remote/journal-upload.conf.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/journal/Makefile b/src/journal/Makefile index 17f2c5e859..4a7d6122c1 100644 --- a/src/journal/Makefile +++ b/src/journal/Makefile @@ -345,5 +345,4 @@ endif # HAVE_MICROHTTPD EXTRA_DIST += \ units/systemd-journal-gatewayd.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/kernel-install/Makefile b/src/kernel-install/Makefile index f0d39fd1e5..d50b684d01 100644 --- a/src/kernel-install/Makefile +++ b/src/kernel-install/Makefile @@ -30,5 +30,4 @@ dist_kernelinstall_SCRIPTS = \ src/kernel-install/50-depmod.install \ src/kernel-install/90-loaderentry.install -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libbasic/Makefile b/src/libbasic/Makefile index 744ccd6801..10f79ec40a 100644 --- a/src/libbasic/Makefile +++ b/src/libbasic/Makefile @@ -277,5 +277,4 @@ $(outdir)/cap-from-name.gperf: $(outdir)/cap-list.txt $(outdir)/cap-from-name.h: $(outdir)/cap-from-name.gperf $(AM_V_GPERF)$(GPERF) -L ANSI-C -t --ignore-case -N lookup_capability -H hash_capability_name -p -C <$< >$@ -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libbus-proxy-core/Makefile b/src/libbus-proxy-core/Makefile index 3ac995f31c..f3cf4a055f 100644 --- a/src/libbus-proxy-core/Makefile +++ b/src/libbus-proxy-core/Makefile @@ -39,5 +39,4 @@ libbus_proxy_core_la_SOURCES = \ libbus_proxy_core_la_LIBADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libcore/Makefile b/src/libcore/Makefile index e7e5ab6904..5eef67be3d 100644 --- a/src/libcore/Makefile +++ b/src/libcore/Makefile @@ -169,5 +169,4 @@ $(outdir)/load-fragment-gperf-nulstr.c: src/core/load-fragment-gperf.gperf $(AM_V_at)$(MKDIR_P) $(dir $@) $(AM_V_GEN)$(AWK) 'BEGIN{ keywords=0 ; FS="," ; print "extern const char load_fragment_gperf_nulstr[];" ; print "const char load_fragment_gperf_nulstr[] ="} ; keyword==1 { print "\"" $$1 "\\0\"" } ; /%%/ { keyword=1} ; END { print ";" }' < $< > $@ -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libfirewall/Makefile b/src/libfirewall/Makefile index 99a428fcd9..ced0f7e476 100644 --- a/src/libfirewall/Makefile +++ b/src/libfirewall/Makefile @@ -39,5 +39,4 @@ libfirewall_la_LIBADD = \ $(LIBIPTC_LIBS) endif # HAVE_LIBIPTC -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libshared/Makefile b/src/libshared/Makefile index e58f999e2b..6d2117a77d 100644 --- a/src/libshared/Makefile +++ b/src/libshared/Makefile @@ -143,5 +143,4 @@ test_local_addresses_SOURCES = \ test_local_addresses_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libsystemd-network/Makefile b/src/libsystemd-network/Makefile index 3ca5e10caf..45f782b184 100644 --- a/src/libsystemd-network/Makefile +++ b/src/libsystemd-network/Makefile @@ -177,5 +177,4 @@ tests += \ test-dhcp6-client \ test-lldp -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libsystemd/Makefile b/src/libsystemd/Makefile index 43d06ad24f..ea2c35d62a 100644 --- a/src/libsystemd/Makefile +++ b/src/libsystemd/Makefile @@ -126,5 +126,4 @@ nodist_test_libsystemd_sym_SOURCES = \ test_libsystemd_sym_LDADD = \ libsystemd.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libsystemd/compat-libs/Makefile b/src/libsystemd/compat-libs/Makefile index eb3787659d..1c2527ae28 100644 --- a/src/libsystemd/compat-libs/Makefile +++ b/src/libsystemd/compat-libs/Makefile @@ -143,5 +143,4 @@ EXTRA_DIST += \ src/compat-libs/libsystemd-id128.pc.in \ src/compat-libs/libsystemd-daemon.pc.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libsystemd/libsystemd-internal/Makefile b/src/libsystemd/libsystemd-internal/Makefile index 23090bd7be..b22e645d98 100644 --- a/src/libsystemd/libsystemd-internal/Makefile +++ b/src/libsystemd/libsystemd-internal/Makefile @@ -250,5 +250,4 @@ test_resolve_SOURCES = \ test_resolve_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libsystemd/libsystemd-journal-internal/Makefile b/src/libsystemd/libsystemd-journal-internal/Makefile index dffb4176ee..aa8c5546c4 100644 --- a/src/libsystemd/libsystemd-journal-internal/Makefile +++ b/src/libsystemd/libsystemd-journal-internal/Makefile @@ -108,5 +108,4 @@ endif # HAVE_GCRYPT noinst_LTLIBRARIES += \ libsystemd-journal-internal.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/libudev/src/Makefile b/src/libudev/src/Makefile index 1dd575021c..255a19982b 100644 --- a/src/libudev/src/Makefile +++ b/src/libudev/src/Makefile @@ -74,5 +74,4 @@ test_libudev_sym_CFLAGS = \ test_libudev_sym_LDADD = \ libudev.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/locale/Makefile b/src/locale/Makefile index 7ff69e87a9..cda2d17d4c 100644 --- a/src/locale/Makefile +++ b/src/locale/Makefile @@ -87,5 +87,4 @@ polkitpolicy_in_files += \ EXTRA_DIST += \ units/systemd-localed.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/login/Makefile b/src/login/Makefile index 4f75bc1cdd..85c79a93b6 100644 --- a/src/login/Makefile +++ b/src/login/Makefile @@ -240,5 +240,4 @@ endif # HAVE_PAM EXTRA_DIST += \ units/systemd-user-sessions.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/machine-id-setup/Makefile b/src/machine-id-setup/Makefile index b3f1e6f8a8..125471d17a 100644 --- a/src/machine-id-setup/Makefile +++ b/src/machine-id-setup/Makefile @@ -34,5 +34,4 @@ systemd_machine_id_setup_LDADD = \ SYSINIT_TARGET_WANTS += \ systemd-machine-id-commit.service -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/modules-load/Makefile b/src/modules-load/Makefile index 390a2dc4e9..ab334e16e8 100644 --- a/src/modules-load/Makefile +++ b/src/modules-load/Makefile @@ -57,5 +57,4 @@ EXTRA_DIST += \ units/systemd-modules-load.service.in \ units/kmod-static-nodes.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/network/Makefile b/src/network/Makefile index d390da1fc4..3453a9c56d 100644 --- a/src/network/Makefile +++ b/src/network/Makefile @@ -197,5 +197,4 @@ EXTRA_DIST += \ units/systemd-networkd-wait-online.service.in \ test/networkd-test.py -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/nss-myhostname/Makefile b/src/nss-myhostname/Makefile index 1477a13a2c..9af5aeabc2 100644 --- a/src/nss-myhostname/Makefile +++ b/src/nss-myhostname/Makefile @@ -44,5 +44,4 @@ lib_LTLIBRARIES += \ libnss_myhostname.la endif # HAVE_MYHOSTNAME -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/sleep/Makefile b/src/sleep/Makefile index b88418c3fb..2d8854bbf9 100644 --- a/src/sleep/Makefile +++ b/src/sleep/Makefile @@ -29,5 +29,4 @@ systemd_sleep_SOURCES = \ systemd_sleep_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/socket-proxy/Makefile b/src/socket-proxy/Makefile index b2e6ba4f7a..cead4f37a9 100644 --- a/src/socket-proxy/Makefile +++ b/src/socket-proxy/Makefile @@ -30,5 +30,4 @@ systemd_socket_proxyd_SOURCES = \ systemd_socket_proxyd_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/sysctl/Makefile b/src/sysctl/Makefile index b35c3d997a..31d38d9104 100644 --- a/src/sysctl/Makefile +++ b/src/sysctl/Makefile @@ -29,5 +29,4 @@ systemd_sysctl_SOURCES = \ systemd_sysctl_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-ac-power/Makefile b/src/systemd-ac-power/Makefile index 9fd451c65c..b06af09332 100644 --- a/src/systemd-ac-power/Makefile +++ b/src/systemd-ac-power/Makefile @@ -29,5 +29,4 @@ systemd_ac_power_SOURCES = \ systemd_ac_power_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-activate/Makefile b/src/systemd-activate/Makefile index 8659cb1beb..058e10809e 100644 --- a/src/systemd-activate/Makefile +++ b/src/systemd-activate/Makefile @@ -33,5 +33,4 @@ systemd_activate_SOURCES = \ systemd_activate_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-analyze/Makefile b/src/systemd-analyze/Makefile index b39ba721f6..c8a3d805fd 100644 --- a/src/systemd-analyze/Makefile +++ b/src/systemd-analyze/Makefile @@ -36,5 +36,4 @@ systemd_analyze_CFLAGS = \ systemd_analyze_LDADD = \ libcore.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-ask-password/Makefile b/src/systemd-ask-password/Makefile index 51d88d4c09..11f3c8038a 100644 --- a/src/systemd-ask-password/Makefile +++ b/src/systemd-ask-password/Makefile @@ -29,5 +29,4 @@ systemd_ask_password_SOURCES = \ systemd_ask_password_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-backlight/Makefile b/src/systemd-backlight/Makefile index 557a236aa9..115285ec40 100644 --- a/src/systemd-backlight/Makefile +++ b/src/systemd-backlight/Makefile @@ -40,5 +40,4 @@ endif # ENABLE_BACKLIGHT EXTRA_DIST += \ units/systemd-backlight@.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-binfmt/Makefile b/src/systemd-binfmt/Makefile index 54f73bacd1..6f520311e4 100644 --- a/src/systemd-binfmt/Makefile +++ b/src/systemd-binfmt/Makefile @@ -53,5 +53,4 @@ endif # ENABLE_BINFMT EXTRA_DIST += \ units/systemd-binfmt.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-bootchart/Makefile b/src/systemd-bootchart/Makefile index e752c988e0..26be9339a9 100644 --- a/src/systemd-bootchart/Makefile +++ b/src/systemd-bootchart/Makefile @@ -48,5 +48,4 @@ endif # ENABLE_BOOTCHART EXTRA_DIST += \ units/systemd-bootchart.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-bus-proxyd/Makefile b/src/systemd-bus-proxyd/Makefile index 411106d38e..75e98b1633 100644 --- a/src/systemd-bus-proxyd/Makefile +++ b/src/systemd-bus-proxyd/Makefile @@ -53,5 +53,4 @@ bus-proxyd-set-cap-hook: INSTALL_EXEC_HOOKS += bus-proxyd-set-cap-hook endif # HAVE_SMACK -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-cgls/Makefile b/src/systemd-cgls/Makefile index 6d8bafb838..72f43638b1 100644 --- a/src/systemd-cgls/Makefile +++ b/src/systemd-cgls/Makefile @@ -29,5 +29,4 @@ systemd_cgls_SOURCES = \ systemd_cgls_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-cgroups-agent/Makefile b/src/systemd-cgroups-agent/Makefile index 3462dcb74c..5c7d9d03ab 100644 --- a/src/systemd-cgroups-agent/Makefile +++ b/src/systemd-cgroups-agent/Makefile @@ -29,5 +29,4 @@ systemd_cgroups_agent_SOURCES = \ systemd_cgroups_agent_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-cgtop/Makefile b/src/systemd-cgtop/Makefile index 92e7bd2dc3..5e379895a8 100644 --- a/src/systemd-cgtop/Makefile +++ b/src/systemd-cgtop/Makefile @@ -29,5 +29,4 @@ systemd_cgtop_SOURCES = \ systemd_cgtop_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-cryptsetup/Makefile b/src/systemd-cryptsetup/Makefile index ea731cad5a..7ab3605a31 100644 --- a/src/systemd-cryptsetup/Makefile +++ b/src/systemd-cryptsetup/Makefile @@ -56,5 +56,4 @@ SYSINIT_TARGET_WANTS += \ endif # HAVE_LIBCRYPTSETUP -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-dbus1-generator/Makefile b/src/systemd-dbus1-generator/Makefile index 0ca31fd24b..1d7f0d1a81 100644 --- a/src/systemd-dbus1-generator/Makefile +++ b/src/systemd-dbus1-generator/Makefile @@ -46,5 +46,4 @@ dist_xinitrc_SCRIPTS = \ INSTALL_EXEC_HOOKS += dbus1-generator-install-hook UNINSTALL_EXEC_HOOKS += dbus1-generator-uninstall-hook -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-debug-generator/Makefile b/src/systemd-debug-generator/Makefile index e86085ca7b..79684a8a7a 100644 --- a/src/systemd-debug-generator/Makefile +++ b/src/systemd-debug-generator/Makefile @@ -29,5 +29,4 @@ systemd_debug_generator_SOURCES = \ systemd_debug_generator_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-delta/Makefile b/src/systemd-delta/Makefile index 63ad09d508..b9124f86ea 100644 --- a/src/systemd-delta/Makefile +++ b/src/systemd-delta/Makefile @@ -29,5 +29,4 @@ systemd_delta_SOURCES = \ systemd_delta_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-detect-virt/Makefile b/src/systemd-detect-virt/Makefile index 4b44544c63..529a3a2561 100644 --- a/src/systemd-detect-virt/Makefile +++ b/src/systemd-detect-virt/Makefile @@ -32,5 +32,4 @@ systemd_detect_virt_LDADD = \ INSTALL_EXEC_HOOKS += \ systemd-detect-virt-install-hook -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-escape/Makefile b/src/systemd-escape/Makefile index d0614c0713..6589e06525 100644 --- a/src/systemd-escape/Makefile +++ b/src/systemd-escape/Makefile @@ -29,5 +29,4 @@ systemd_escape_SOURCES = \ systemd_escape_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-firstboot/Makefile b/src/systemd-firstboot/Makefile index 71dd8b74c3..931cf485e6 100644 --- a/src/systemd-firstboot/Makefile +++ b/src/systemd-firstboot/Makefile @@ -44,5 +44,4 @@ endif # ENABLE_FIRSTBOOT EXTRA_DIST += \ units/systemd-firstboot.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-fsck/Makefile b/src/systemd-fsck/Makefile index 2e040bfb0e..9c981837f5 100644 --- a/src/systemd-fsck/Makefile +++ b/src/systemd-fsck/Makefile @@ -29,5 +29,4 @@ systemd_fsck_SOURCES = \ systemd_fsck_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-fstab-generator/Makefile b/src/systemd-fstab-generator/Makefile index 6a65d25154..4d201612b8 100644 --- a/src/systemd-fstab-generator/Makefile +++ b/src/systemd-fstab-generator/Makefile @@ -30,5 +30,4 @@ systemd_fstab_generator_SOURCES = \ systemd_fstab_generator_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-getty-generator/Makefile b/src/systemd-getty-generator/Makefile index 84564079bb..a070f1c424 100644 --- a/src/systemd-getty-generator/Makefile +++ b/src/systemd-getty-generator/Makefile @@ -29,5 +29,4 @@ systemd_getty_generator_SOURCES = \ systemd_getty_generator_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-gpt-auto-generator/Makefile b/src/systemd-gpt-auto-generator/Makefile index 16b5933638..177db8da7c 100644 --- a/src/systemd-gpt-auto-generator/Makefile +++ b/src/systemd-gpt-auto-generator/Makefile @@ -40,5 +40,4 @@ systemd_gpt_auto_generator_CFLAGS = \ $(BLKID_CFLAGS) endif # HAVE_BLKID -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-hibernate-resume/Makefile b/src/systemd-hibernate-resume/Makefile index 8b204da327..baee443e84 100644 --- a/src/systemd-hibernate-resume/Makefile +++ b/src/systemd-hibernate-resume/Makefile @@ -57,5 +57,4 @@ EXTRA_DIST += \ units/systemd-hibernate-resume@.service.in \ units/systemd-hybrid-sleep.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-hwdb/Makefile b/src/systemd-hwdb/Makefile index 2b3aaeed54..47f900aefc 100644 --- a/src/systemd-hwdb/Makefile +++ b/src/systemd-hwdb/Makefile @@ -73,5 +73,4 @@ EXTRA_DIST += \ hwdb/ids-update.pl \ hwdb/sdio.ids -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-notify/Makefile b/src/systemd-notify/Makefile index 3de5087a14..c5402385b9 100644 --- a/src/systemd-notify/Makefile +++ b/src/systemd-notify/Makefile @@ -29,5 +29,4 @@ systemd_notify_SOURCES = \ systemd_notify_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-nspawn/Makefile b/src/systemd-nspawn/Makefile index 5ec68fb205..b276bd6ceb 100644 --- a/src/systemd-nspawn/Makefile +++ b/src/systemd-nspawn/Makefile @@ -66,5 +66,4 @@ systemd_nspawn_LDADD += \ libfirewall.la endif # HAVE_LIBIPTC -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-path/Makefile b/src/systemd-path/Makefile index 9009100008..19eb6bd10a 100644 --- a/src/systemd-path/Makefile +++ b/src/systemd-path/Makefile @@ -29,5 +29,4 @@ systemd_path_SOURCES = \ systemd_path_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-quotacheck/Makefile b/src/systemd-quotacheck/Makefile index 435ed0438c..42ff1dc814 100644 --- a/src/systemd-quotacheck/Makefile +++ b/src/systemd-quotacheck/Makefile @@ -43,5 +43,4 @@ EXTRA_DIST += \ nodist_systemunit_DATA += \ units/quotaon.service -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-random-seed/Makefile b/src/systemd-random-seed/Makefile index 80f122dd73..d32f124c9a 100644 --- a/src/systemd-random-seed/Makefile +++ b/src/systemd-random-seed/Makefile @@ -44,5 +44,4 @@ endif # ENABLE_RANDOMSEED EXTRA_DIST += \ units/systemd-random-seed.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-rc-local-generator/Makefile b/src/systemd-rc-local-generator/Makefile index f1673644d4..2e9b3e7a64 100644 --- a/src/systemd-rc-local-generator/Makefile +++ b/src/systemd-rc-local-generator/Makefile @@ -29,5 +29,4 @@ systemd_rc_local_generator_SOURCES = \ systemd_rc_local_generator_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-remount-fs/Makefile b/src/systemd-remount-fs/Makefile index e8374d805b..91baa27bf1 100644 --- a/src/systemd-remount-fs/Makefile +++ b/src/systemd-remount-fs/Makefile @@ -31,5 +31,4 @@ systemd_remount_fs_SOURCES = \ systemd_remount_fs_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-reply-password/Makefile b/src/systemd-reply-password/Makefile index cf5923da07..30283141aa 100644 --- a/src/systemd-reply-password/Makefile +++ b/src/systemd-reply-password/Makefile @@ -29,5 +29,4 @@ systemd_reply_password_SOURCES = \ systemd_reply_password_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-rfkill/Makefile b/src/systemd-rfkill/Makefile index c8eaf043c9..4cb5137e63 100644 --- a/src/systemd-rfkill/Makefile +++ b/src/systemd-rfkill/Makefile @@ -43,5 +43,4 @@ endif # ENABLE_RFKILL EXTRA_DIST += \ units/systemd-rfkill.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-run/Makefile b/src/systemd-run/Makefile index 282ef5168c..afa2d0f34c 100644 --- a/src/systemd-run/Makefile +++ b/src/systemd-run/Makefile @@ -29,5 +29,4 @@ systemd_run_SOURCES = \ systemd_run_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-shutdown/Makefile b/src/systemd-shutdown/Makefile index 1cc4c563cc..0695f3927d 100644 --- a/src/systemd-shutdown/Makefile +++ b/src/systemd-shutdown/Makefile @@ -35,5 +35,4 @@ systemd_shutdown_SOURCES = \ systemd_shutdown_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-stdio-bridge/Makefile b/src/systemd-stdio-bridge/Makefile index 24852e78ed..650240a908 100644 --- a/src/systemd-stdio-bridge/Makefile +++ b/src/systemd-stdio-bridge/Makefile @@ -30,5 +30,4 @@ systemd_stdio_bridge_LDADD = \ libbus-proxy-core.la \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-system-update-generator/Makefile b/src/systemd-system-update-generator/Makefile index e2ae889d7e..62f750c182 100644 --- a/src/systemd-system-update-generator/Makefile +++ b/src/systemd-system-update-generator/Makefile @@ -29,5 +29,4 @@ systemd_system_update_generator_SOURCES = \ systemd_system_update_generator_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-sysv-generator/Makefile b/src/systemd-sysv-generator/Makefile index 417cb7d849..f6de146408 100644 --- a/src/systemd-sysv-generator/Makefile +++ b/src/systemd-sysv-generator/Makefile @@ -29,5 +29,4 @@ systemd_sysv_generator_SOURCES = \ systemd_sysv_generator_LDADD = \ libcore.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-timesync/Makefile b/src/systemd-timesync/Makefile index 26d96ca1e0..a329865019 100644 --- a/src/systemd-timesync/Makefile +++ b/src/systemd-timesync/Makefile @@ -61,5 +61,4 @@ EXTRA_DIST += \ units/systemd-timesyncd.service.in \ src/timesync/timesyncd.conf.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-tmpfiles/Makefile b/src/systemd-tmpfiles/Makefile index cd4778b4b5..c193b9c37d 100644 --- a/src/systemd-tmpfiles/Makefile +++ b/src/systemd-tmpfiles/Makefile @@ -81,5 +81,4 @@ EXTRA_DIST += \ units/systemd-tmpfiles-setup.service.in \ units/systemd-tmpfiles-clean.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-tty-ask-password-agent/Makefile b/src/systemd-tty-ask-password-agent/Makefile index 81d2ac4fee..37b51da33b 100644 --- a/src/systemd-tty-ask-password-agent/Makefile +++ b/src/systemd-tty-ask-password-agent/Makefile @@ -29,5 +29,4 @@ systemd_tty_ask_password_agent_SOURCES = \ systemd_tty_ask_password_agent_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-update-done/Makefile b/src/systemd-update-done/Makefile index 654d6af7c1..ae592db650 100644 --- a/src/systemd-update-done/Makefile +++ b/src/systemd-update-done/Makefile @@ -29,5 +29,4 @@ systemd_update_done_SOURCES = \ systemd_update_done_LDADD = \ libshared.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-update-utmp/Makefile b/src/systemd-update-utmp/Makefile index 5b9933ec95..182c7534e7 100644 --- a/src/systemd-update-utmp/Makefile +++ b/src/systemd-update-utmp/Makefile @@ -34,5 +34,4 @@ systemd_update_utmp_LDADD = \ libshared.la \ $(AUDIT_LIBS) -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/systemd-vconsole/Makefile b/src/systemd-vconsole/Makefile index 9cfaaa5fba..466829c1b9 100644 --- a/src/systemd-vconsole/Makefile +++ b/src/systemd-vconsole/Makefile @@ -47,5 +47,4 @@ EXTRA_DIST += \ src/vconsole/90-vconsole.rules.in \ units/systemd-vconsole-setup.service.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/sysusers/Makefile b/src/sysusers/Makefile index 83f497dfac..c9aaad0369 100644 --- a/src/sysusers/Makefile +++ b/src/sysusers/Makefile @@ -58,5 +58,4 @@ EXTRA_DIST += \ sysusers.d/systemd-remote.conf.m4 \ sysusers.d/basic.conf.in -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/test/Makefile b/src/test/Makefile index eb65bdce1e..f416b4aadf 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -32,5 +32,4 @@ test_id128_LDADD = \ tests += \ test-id128 -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/Makefile b/src/udev/Makefile index 187712f651..1cd38110a6 100644 --- a/src/udev/Makefile +++ b/src/udev/Makefile @@ -178,5 +178,4 @@ udevadm_SOURCES = \ udevadm_LDADD = \ libudev-core.la -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/ata_id/Makefile b/src/udev/ata_id/Makefile index 639e3da118..e70e2573bd 100644 --- a/src/udev/ata_id/Makefile +++ b/src/udev/ata_id/Makefile @@ -32,5 +32,4 @@ ata_id_LDADD = \ udevlibexec_PROGRAMS += \ ata_id -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/cdrom_id/Makefile b/src/udev/cdrom_id/Makefile index 5e9049ad61..f7583cfb70 100644 --- a/src/udev/cdrom_id/Makefile +++ b/src/udev/cdrom_id/Makefile @@ -35,5 +35,4 @@ udevlibexec_PROGRAMS += \ dist_udevrules_DATA += \ rules/60-cdrom_id.rules -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/collect/Makefile b/src/udev/collect/Makefile index 4dacf044f0..88dbaa1d82 100644 --- a/src/udev/collect/Makefile +++ b/src/udev/collect/Makefile @@ -32,5 +32,4 @@ collect_LDADD = \ udevlibexec_PROGRAMS += \ collect -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/mtd_probe/Makefile b/src/udev/mtd_probe/Makefile index 1c57404e70..719993ed0f 100644 --- a/src/udev/mtd_probe/Makefile +++ b/src/udev/mtd_probe/Makefile @@ -34,5 +34,4 @@ dist_udevrules_DATA += \ udevlibexec_PROGRAMS += \ mtd_probe -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/scsi_id/Makefile b/src/udev/scsi_id/Makefile index 9cc633363a..eaf5a51734 100644 --- a/src/udev/scsi_id/Makefile +++ b/src/udev/scsi_id/Makefile @@ -38,5 +38,4 @@ udevlibexec_PROGRAMS += \ EXTRA_DIST += \ src/udev/scsi_id/README -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/src/udev/v4l_id/Makefile b/src/udev/v4l_id/Makefile index 6c9b24a5e1..c2815b6809 100644 --- a/src/udev/v4l_id/Makefile +++ b/src/udev/v4l_id/Makefile @@ -35,5 +35,4 @@ udevlibexec_PROGRAMS += \ dist_udevrules_DATA += \ rules/60-persistent-v4l.rules -$(eval $(value automake2autothing)) include $(topsrcdir)/build-aux/Makefile.tail.mk |