guix-commits
[Top][All Lists]
Advanced

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

03/14: gnu: Remove package/inherit from commencement.


From: Efraim Flashner
Subject: 03/14: gnu: Remove package/inherit from commencement.
Date: Sun, 1 Oct 2017 16:13:16 -0400 (EDT)

efraim pushed a commit to branch core-updates
in repository guix.

commit 848f550f2c105326dc3be4033c8aaf35ec21cde4
Author: Efraim Flashner <address@hidden>
Date:   Sun Oct 1 20:59:05 2017 +0300

    gnu: Remove package/inherit from commencement.
    
    This is a follow-up to several security grafts.
    
    * gnu/packages/commencement.scm (file-boot0, glibc-final,
    glibc-final-with-bootstrap-bash): Use '(package (inherit ...)'
    in place of '(package/inherit'.
---
 gnu/packages/commencement.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 68faf36..d58c896 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -113,7 +113,7 @@
 
 (define file-boot0
   (package-with-bootstrap-guile
-   (package-with-explicit-inputs (package/inherit file
+   (package-with-explicit-inputs (package (inherit file)
                                    (name "file-boot0"))
                                  `(("make" ,gnu-make-boot0)
                                    ,@%bootstrap-inputs)
@@ -466,7 +466,7 @@ the bootstrap environment."
   ;; built just below; the only difference is that this one uses the
   ;; bootstrap Bash.
   (package-with-bootstrap-guile
-   (package/inherit glibc
+   (package (inherit glibc)
      (name "glibc-intermediate")
      (arguments
       `(#:guile ,%bootstrap-guile
@@ -644,7 +644,7 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a 
\"address@hidden"~%"
 
 (define glibc-final
   ;; The final glibc, which embeds the statically-linked Bash built above.
-  (package/inherit glibc-final-with-bootstrap-bash
+  (package (inherit glibc-final-with-bootstrap-bash)
     (name "glibc")
     (inputs `(("static-bash" ,static-bash-for-glibc)
               ,@(alist-delete



reply via email to

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