guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: libgc: Fix replacement inheritance.


From: guix-commits
Subject: 01/02: gnu: libgc: Fix replacement inheritance.
Date: Mon, 2 Mar 2020 17:49:02 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 1f8838d1f6295e10851b2915dc3b0a97b3bbc236
Author: Marius Bakke <address@hidden>
AuthorDate: Mon Mar 2 23:08:13 2020 +0100

    gnu: libgc: Fix replacement inheritance.
    
    * gnu/packages/bdw-gc.scm (libgc-8.0): Do not use PACKAGE/INHERIT, because 
it
    does not make sense to inherit any replacements of LIBGC.
    (libgc/back-pointers): Use PACKAGE/INHERIT.
---
 gnu/packages/bdw-gc.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index f0cff70..73b0c07 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -92,8 +92,8 @@ C or C++ programs, though that is not its primary goal.")
    (license (x11-style (string-append home-page "license.txt")))))
 
 (define-public libgc-8.0
-  (package/inherit
-   libgc
+  (package
+   (inherit libgc)
    (version "8.0.4")
    (source (origin
              (method url-fetch)
@@ -104,8 +104,8 @@ C or C++ programs, though that is not its primary goal.")
                "1798rp3mcfkgs38ynkbg2p47bq59pisrc6mn0l20pb5iczf0ssj3"))))))
 
 (define-public libgc/back-pointers
-  (package
-    (inherit libgc)
+  (package/inherit
+    libgc
     (name "libgc-back-pointers")
     (arguments
      `(#:make-flags



reply via email to

[Prev in Thread] Current Thread [Next in Thread]