mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
33 lines
968 B
Diff
33 lines
968 B
Diff
|
From 0f434c6baee63eff913f36aee839df3718a75d4a Mon Sep 17 00:00:00 2001
|
||
|
From: Nikolay Amiantov <ab@fmap.me>
|
||
|
Date: Thu, 7 Jul 2016 02:47:13 +0300
|
||
|
Subject: [PATCH 11/27] Fix hwdb paths
|
||
|
|
||
|
Patch by vcunat.
|
||
|
---
|
||
|
src/libsystemd/sd-hwdb/sd-hwdb.c | 7 +------
|
||
|
1 file changed, 1 insertion(+), 6 deletions(-)
|
||
|
|
||
|
diff --git a/src/libsystemd/sd-hwdb/sd-hwdb.c b/src/libsystemd/sd-hwdb/sd-hwdb.c
|
||
|
index 58124abd21..d80e408b8c 100644
|
||
|
--- a/src/libsystemd/sd-hwdb/sd-hwdb.c
|
||
|
+++ b/src/libsystemd/sd-hwdb/sd-hwdb.c
|
||
|
@@ -298,13 +298,8 @@ static int trie_search_f(sd_hwdb *hwdb, const char *search) {
|
||
|
}
|
||
|
|
||
|
static const char hwdb_bin_paths[] =
|
||
|
- "/etc/systemd/hwdb/hwdb.bin\0"
|
||
|
"/etc/udev/hwdb.bin\0"
|
||
|
- "/usr/lib/systemd/hwdb/hwdb.bin\0"
|
||
|
-#if HAVE_SPLIT_USR
|
||
|
- "/lib/systemd/hwdb/hwdb.bin\0"
|
||
|
-#endif
|
||
|
- UDEVLIBEXECDIR "/hwdb.bin\0";
|
||
|
+ ;
|
||
|
|
||
|
_public_ int sd_hwdb_new(sd_hwdb **ret) {
|
||
|
_cleanup_(sd_hwdb_unrefp) sd_hwdb *hwdb = NULL;
|
||
|
--
|
||
|
2.24.1
|
||
|
|