me
/
guix
Archived
1
0
Fork 0

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.
master
Maxim Cournoyer 2023-09-03 22:23:26 -04:00
parent 5a65672857
commit 32792d2073
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 1 additions and 1 deletions

View File

@ -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")