diff options
author | Zheng Junjie <873216071@qq.com> | 2023-07-28 21:33:53 +0800 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2023-10-26 15:21:36 +0200 |
commit | 33f5b747b4a0a508e1ffc94a5bf425cff707c6e3 (patch) | |
tree | 9e714b75cf9a793a50655275281b39b622c7a8a1 | |
parent | dd3b9e84b9b0db53def58a2888827acbaccf4944 (diff) |
gnu: fcode-utils: Fix cross-compilation.
* gnu/packages/firmware.scm (fcode-utils)
[arguments]: use STRIP-FOR-TARGET.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-rw-r--r-- | gnu/packages/firmware.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index a674421157..0e638acfae 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com> ;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> +;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -397,6 +398,7 @@ broadband modem as found, for example, on PinePhone.") #:test-target "tests" #:make-flags #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "STRIP=" #$(strip-for-target)) (string-append "DESTDIR=" #$output)) #:phases #~(modify-phases %standard-phases |