diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-07-27 20:46:40 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-07-28 22:35:41 +0200 |
commit | 6c1f3ba54ac1f42598c543b86daaf294b29294b1 (patch) | |
tree | d36f0a08193b40a94632a92abba96f2a4da9ab4c /Makefile.am | |
parent | 299031ca8b05ede06e3c03c436429eec854cc75c (diff) |
man: ship systemd-udevd as the real manpage
Instead of making systemd-udevd a so-link to systemd-udevd.service,
ship the real page as systemd-udevd to integrate better with distros
where udevd might be run standalone.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index e4dfafb4b5..00ed3016fc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1659,16 +1659,16 @@ libudev_private_la_LIBADD = \ MANPAGES += \ man/udev.7 \ man/udevadm.8 \ - man/systemd-udevd.service.8 + man/systemd-udevd.8 MANPAGES_ALIAS += \ - man/systemd-udevd.8 \ + man/systemd-udevd.service.8 \ man/systemd-udevd-control.socket.8 \ man/systemd-udevd-kernel.socket.8 -man/systemd-udevd.8: man/systemd-udevd.service.8 -man/systemd-udevd-control.socket.8: man/systemd-udevd.service.8 -man/systemd-udevd-kernel.socket.8: man/systemd-udevd.service.8 +man/systemd-udevd.service.8: man/systemd-udevd.8 +man/systemd-udevd-control.socket.8: man/systemd-udevd.8 +man/systemd-udevd-kernel.socket.8: man/systemd-udevd.8 udev-confdirs: -mkdir -p $(DESTDIR)$(sysconfdir)/udev/rules.d |