From c7a9b2064d076df21e4984ea2c2f62f1aa7c9e36 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 17 Jul 2018 10:02:49 +1000 Subject: tools: setenv the quirks dir when running from the build directory Fixes #84 Signed-off-by: Peter Hutterer --- tools/shared.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tools/shared.c') diff --git a/tools/shared.c b/tools/shared.c index c36ee136..2a53343d 100644 --- a/tools/shared.c +++ b/tools/shared.c @@ -311,6 +311,13 @@ tools_open_device(const char *path, bool verbose, bool *grab) return li; } +static void +tools_setenv_quirks_dir(void) +{ + if (tools_execdir_is_builddir(NULL, 0)) + setenv("LIBINPUT_QUIRKS_DIR", LIBINPUT_QUIRKS_SRCDIR, 0); +} + struct libinput * tools_open_backend(enum tools_backend which, const char *seat_or_device, @@ -319,6 +326,8 @@ tools_open_backend(enum tools_backend which, { struct libinput *li; + tools_setenv_quirks_dir(); + switch (which) { case BACKEND_UDEV: li = tools_open_udev(seat_or_device, verbose, grab); -- cgit v1.2.1