From 32792d2073f3096cb0710c40a7c74e5797ef0e6e Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 3 Sep 2023 22:23:26 -0400 Subject: gnu: avr-gcc: Avoid referencing gcc from the top level. Fixes . * 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(-) (limited to 'gnu') 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") -- cgit v1.2.3