diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-09-16 22:42:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-17 17:34:58 +0200 |
commit | 552a18c24a9228ea6ee3a12d64366a15e3a0adbb (patch) | |
tree | 9a20037842b20300dd28f63afd3f27febc1ad878 /gnu | |
parent | 7979001c58fcadd98bae09781c495f0a462d6e04 (diff) | |
download | guix-552a18c24a9228ea6ee3a12d64366a15e3a0adbb.tar.gz guix-552a18c24a9228ea6ee3a12d64366a15e3a0adbb.zip |
gnu: libgccjit: Remove duplicate libgccjit@11 package.
Fixes a regression introduced in
bfeccd3db9446d45d04d9144698506a61321e1c6 and caught by
‘tests/packages.scm’, whereby two equivalent but not ‘eq?’ libgccjit@11
packages would be exported.
* gnu/packages/gcc.scm (libgccjit): Make an alias for ‘libgccjit-11’.
Change-Id: I9aeacb7588af5f78af0941e80715665572567958
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gcc.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm index 2f90024295..544c789246 100644 --- a/gnu/packages/gcc.scm +++ b/gnu/packages/gcc.scm @@ -1225,8 +1225,9 @@ misnomer."))) (define-public libgccjit-12 (make-libgccjit gcc-12)) (define-public libgccjit-14 (make-libgccjit gcc-14)) -;; Use the 'gcc' variable from above to track the same version. -(define-public libgccjit (make-libgccjit gcc)) +;; This must match the 'gcc' variable, but it must also be 'eq?' to one of the +;; libgccjit-* packages above. +(define-public libgccjit libgccjit-11) (define (make-gccgo gcc) "Return a gccgo package based on GCC." |