[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: avr-gcc: Avoid referencing gcc from the top level.
From: |
guix-commits |
Subject: |
05/05: gnu: avr-gcc: Avoid referencing gcc from the top level. |
Date: |
Sun, 3 Sep 2023 23:04:12 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 32792d2073f3096cb0710c40a7c74e5797ef0e6e
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
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")