diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-23 22:27:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-23 22:27:17 +0200 |
commit | 94b13427d766b030b02b2df6a291525335f2d08d (patch) | |
tree | 9811749e0065625bf3343288b95ee1d013b670a5 /gnu/packages/patches/module-init-tools-moduledir.patch | |
parent | 4a8b4c25b07eedd1427d8c33c01d0c7d6a0f17b5 (diff) | |
download | guix-94b13427d766b030b02b2df6a291525335f2d08d.tar guix-94b13427d766b030b02b2df6a291525335f2d08d.tar.gz |
gnu: module-init-tools: Fix $LINUX_MODULE_DIRECTORY handling in 'depmod'.
* gnu/packages/patches/module-init-tools-moduledir.patch: Adjust the
'depmod' part to handle $LINUX_MODULE_DIRECTORY without a trailing
slash.
Diffstat (limited to 'gnu/packages/patches/module-init-tools-moduledir.patch')
-rw-r--r-- | gnu/packages/patches/module-init-tools-moduledir.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/patches/module-init-tools-moduledir.patch b/gnu/packages/patches/module-init-tools-moduledir.patch index 7a40a03b04..08f03d1cc4 100644 --- a/gnu/packages/patches/module-init-tools-moduledir.patch +++ b/gnu/packages/patches/module-init-tools-moduledir.patch @@ -6,7 +6,7 @@ Original patch by David Guibert, from Nixpkgs; adjusted to use 'LINUX_MODULE_DIRECTORY' rather than 'MODULE_DIR' as the variable name. diff --git a/depmod.c b/depmod.c -index a1d2f8c..a8f92b2 100644 +index a1d2f8c..ff579c7 100644 --- a/depmod.c +++ b/depmod.c @@ -48,9 +48,6 @@ @@ -77,7 +77,7 @@ index a1d2f8c..a8f92b2 100644 + module_dir = "/lib/modules"; + } + -+ nofail_asprintf(&dirname, "%s%s%s", basedir, module_dir, version); ++ nofail_asprintf(&dirname, "%s%s/%s", basedir, module_dir, version); if (maybe_all) { if (!doing_stdout && !depfile_out_of_date(dirname)) |