diff options
author | Armin K <krejzi@email.com> | 2014-03-04 16:23:41 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-03-07 00:17:18 -0500 |
commit | e2eb18d56b14eeb405706970f0460d8539cdcf23 (patch) | |
tree | 01222944312bd677feab59a908d61f84df8a6606 /Makefile.am | |
parent | 7d06ef0a5cd2f0a4e021d3d12f3841cce529e0f2 (diff) |
build-sys: Don't distribute generated udev rule
It contains hardcoded path to systemd-sysctl executable which
is /usr/lib/systemd/systemd-sysctl on latest stable release and
as such it will complain at runtime if rootprefix != prefix
[zj: readd the file to nodist_udevrules_DATA]
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6cc83162dd..2db58a937b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2572,7 +2572,6 @@ dist_network_DATA = \ network/80-container-host0.network dist_udevrules_DATA += \ - rules/99-systemd.rules \ rules/42-usb-hid-pm.rules \ rules/50-udev-default.rules \ rules/60-drm.rules \ @@ -2589,6 +2588,9 @@ dist_udevrules_DATA += \ rules/80-net-setup-link.rules \ rules/95-udev-late.rules +nodist_udevrules_DATA += \ + rules/99-systemd.rules + dist_udevhwdb_DATA = \ hwdb/20-pci-vendor-model.hwdb \ hwdb/20-pci-classes.hwdb \ |