guix-commits
[Top][All Lists]
Advanced

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

01/03: install: Make /var/guix/…/guix-profile a relative symlink.


From: Ludovic Courtès
Subject: 01/03: install: Make /var/guix/…/guix-profile a relative symlink.
Date: Sun, 21 Oct 2018 17:54:52 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit aff38cb199fc847f97059600a6c9c99ee754fc07
Author: Ludovic Courtès <address@hidden>
Date:   Sat Oct 20 17:39:53 2018 +0200

    install: Make /var/guix/…/guix-profile a relative symlink.
    
    * gnu/build/install.scm (populate-single-profile-directory): Make
    /var/guix/profiles/per-user/root/guix-profile a relative symlink.
---
 gnu/build/install.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/build/install.scm b/gnu/build/install.scm
index 5a5e703..c602d69 100644
--- a/gnu/build/install.scm
+++ b/gnu/build/install.scm
@@ -199,7 +199,7 @@ This is used to create the self-contained tarballs with 
'guix pack'."
   (mkdir-p* %root-profile)
   (symlink* profile
             (string-append %root-profile "/guix-profile-1-link"))
-  (symlink* (string-append %root-profile "/guix-profile-1-link")
+  (symlink* "guix-profile-1-link"
             (string-append %root-profile "/guix-profile"))
 
   (mkdir-p* "/root")



reply via email to

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