summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2022-11-06 10:13:17 +0100
committerChristopher Baines <mail@cbaines.net>2022-11-07 20:35:40 +0100
commitda21c5d45f418103bb39061787c90920ee3f36d8 (patch)
treebc19d86e016e6d1b124b2c3ae49f02cae24a9e03
parentd60c9fbf95409a72013d8368e6f50c1ac055df5a (diff)
downloadguix-da21c5d45f418103bb39061787c90920ee3f36d8.tar.gz
build-system/linux-module: Add #:source-directory to linux-module-build-cross.
Otherwise computing cross-compilation derivations for packages (e.g. xpadneo)
using the #:source-directory argument fails with this error:

  Unrecognized keyword: #:source-directory

* guix/build-system/linux-module.scm (linux-module-build-cross): Support
 #:source-directory.
-rw-r--r--guix/build-system/linux-module.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/linux-module.scm b/guix/build-system/linux-module.scm
index 94a293da13..d6c369d65d 100644
--- a/guix/build-system/linux-module.scm
+++ b/guix/build-system/linux-module.scm
@@ -210,6 +210,7 @@
           (tests? #f)
           (phases '%standard-phases)
           (system (%current-system))
+          (source-directory ".")
           (substitutable? #t)
           (imported-modules
            %linux-module-build-system-modules)
@@ -229,6 +230,7 @@
 
           (linux-module-build #:name #$name
                               #:source #+source
+                              #:source-directory #$source-directory
                               #:system #$system
                               #:target #$target
                               #:arch #$(system->arch (or target system))