From: Zbigniew Jędrzejewski-Szmek Date: Sun, 3 Feb 2013 03:48:38 +0000 (-0500) Subject: build-sys: replace one last mkdir hook with list item X-Git-Tag: v198~344 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=63ed840e59e82a34cfd59df47917a4e8498da903;p=elogind.git build-sys: replace one last mkdir hook with list item Previously, errors would be ignored. Now they are not. But I don't see how we could fail to create the directory, so I don't think that it matters. --- diff --git a/Makefile.am b/Makefile.am index 93fd3773e..1f9a2b4a6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1906,11 +1906,9 @@ 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 -udev-confdirs: - -$(MKDIR_P) $(DESTDIR)$(sysconfdir)/udev/rules.d - -$(MKDIR_P) $(DESTDIR)$(sysconfdir)/udev/hwdb.d - -INSTALL_DATA_HOOKS += udev-confdirs +INSTALL_DIRS += \ + $(sysconfdir)/udev/rules.d \ + $(sysconfdir)/udev/hwdb.d dist_udevrules_DATA += \ rules/99-systemd.rules \