diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-19 12:56:24 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-19 12:56:24 +0300 |
commit | 589a165de1895875a9849c2ededa69726a185a8c (patch) | |
tree | 40674c1a296e605fc40650ba3e5dc3a6fc879c8c /gnu/packages | |
parent | 2fd00e1cd19b8b98629f5d111c5da124d2be8bd4 (diff) | |
download | guix-589a165de1895875a9849c2ededa69726a185a8c.tar.gz guix-589a165de1895875a9849c2ededa69726a185a8c.zip |
gnu: openfwwf-firmware: Don't build for a specific target.
* gnu/packages/firmware.scm (openfwwf-firmware)[arguments]: Set target
to #f since we're building firmware files.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/firmware.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index a216553d46..d82636444a 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -334,6 +334,7 @@ automatic, safe and reliable. It is used by tools such as GNOME Software.") `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out") "/lib/firmware/b43-open")) + #:target #f ; Package produces firmware. #:tests? #f ;no tests #:phases (modify-phases %standard-phases (delete 'configure)))) |