apteryx pushed a commit to branch master
in repository guix.
commit 32792d2073f3096cb0710c40a7c74e5797ef0e6e
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Sep 3 22:23:26 2023 -0400
gnu: avr-gcc: Avoid referencing gcc from the top level.
Fixes <https://issues.guix.gnu.org/65716>.
* gnu/packages/avr.scm (avr-gcc): Do not explicitly refer to 'gcc'. The
default value of the argument uses the identifier-syntax trick to delay
evaluation of gcc.
---
gnu/packages/avr.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/avr.scm b/gnu/packages/avr.scm
index 44d6e0ebbb..9c623a9626 100644
--- a/gnu/packages/avr.scm
+++ b/gnu/packages/avr.scm
@@ -46,7 +46,7 @@
(name "avr-binutils")))
(define avr-gcc
- (let ((xgcc (cross-gcc "avr" #:xgcc gcc #:xbinutils avr-binutils)))
+ (let ((xgcc (cross-gcc "avr" #:xbinutils avr-binutils)))
(package
(inherit xgcc)
(name "avr-gcc")