diff options
author | Bin Li <bin.li@canonical.com> | 2018-09-03 22:46:48 +0800 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2018-09-05 10:50:11 -0400 |
commit | ef231c2790e7a3bbee3f09ac4a125e28e95011b4 (patch) | |
tree | ffec67a010ccc066f5820fa59ef9f2d16efaebf9 /Makefile.am | |
parent | 519220df1f72ce97151836bbc00878068fbeff68 (diff) | |
download | gdm-ef231c2790e7a3bbee3f09ac4a125e28e95011b4.tar.gz |
autogoo: make udev rules dir configurable
Different distributions place udev rules in
different locations (depending on whether or
not /usr is a symlink to /)
That means the location needs to be configurable.
This commit adds a new ./configure argument,
--with-udevdir that allows distributions to specify
where udev looks for its data files.
By default it pulls the answer from pkg-config.
This commit also fixes `make distcheck` when run
by an unprivileged user by disabling udev rule
installation entirely during distcheck.
Small changes by Ray Strode.
Closes https://gitlab.gnome.org/GNOME/gdm/merge_requests/44
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1b710098..7896f59d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,4 +30,4 @@ EXTRA_DIST = \ DISTCLEANFILES = \ $(NULL) -AM_DISTCHECK_CONFIGURE_FLAGS = --enable-split-authentication --enable-introspection --without-systemdsystemunitdir +AM_DISTCHECK_CONFIGURE_FLAGS = --enable-split-authentication --enable-introspection --without-systemdsystemunitdir --without-udevdir |