Add $EUDEV_RULES_DIRECTORY to the list of rules directories. The old udev 182 supported $UDEV_CONFIG_FILE, which in turn allowed the search path to be customized, but eudev no longer has this, hence this hack. --- eudev-3.1.5/src/udev/udev-rules.c 2015-10-13 06:22:14.000000000 +0800 +++ eudev-3.1.5/src/udev/udev-rules.c 2015-10-16 20:45:38.491934336 +0800 @@ -47,15 +47,11 @@ }; }; -static const char* const rules_dirs[] = { +static const char* rules_dirs[] = { UDEV_CONF_DIR "/rules.d", UDEV_RULES_DIR, - UDEV_ROOT_RUN "/udev/rules.d", UDEV_LIBEXEC_DIR "/rules.d", -#ifdef HAVE_SPLIT_USR - "/lib/udev/rules.d", - "/usr/lib/udev/rules.d", -#endif + NULL, /* placeholder for $EUDEV_RULES_DIRECTORY */ NULL}; struct udev_rules { @@ -1704,6 +1700,9 @@ udev_rules_check_timestamp(rules); + /* Allow the user to specify an additional rules directory. */ + rules_dirs[3] = getenv("EUDEV_RULES_DIRECTORY"); + r = conf_files_list_strv(&files, ".rules", NULL, rules_dirs); if (r < 0) { log_error_errno(r, "failed to enumerate rules files: %m"); 0'>refslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-01-18 21:21:30 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2020-02-22 23:51:54 +0100
commit8680eff30d6b41993dde8e5c03ec184475889820 (patch)
tree9d1e10983ee546d7047d0ffee765050dbce58a87 /gnu/packages
parent414b8d9e499470dcfaadb518d36529a1627c2a72 (diff)
downloadguix-8680eff30d6b41993dde8e5c03ec184475889820.tar.gz
guix-8680eff30d6b41993dde8e5c03ec184475889820.zip
gnu: python-singledispatch: Use HTTPS home page.
* gnu/packages/python-xyz.scm (python-singledispatch)[home-page]: Use HTTPS.
Diffstat (limited to 'gnu/packages')