From 781d0a2ce17e2a6deaf924ee27d5149e271a5122 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Wed, 27 May 2015 17:40:49 +0200
Subject: [PATCH] install: Use the actual store name when building the tarball.

* gnu/system/install.scm (self-contained-tarball): Use (%store-directory)
  instead of "/gnu".
---
 gnu/system/install.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index 007bd25ae63..cacd089d6b9 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -79,7 +79,7 @@ (define %root "root")
                             ;; extracting the archive.
                             "./root/.guix-profile"
                             "./var/guix"
-                            "./gnu")))))
+                            (string-append "." (%store-directory)))))))
 
     (gexp->derivation "guix-tarball.tar.xz" build
                       #:references-graphs `(("profile" ,profile))
-- 
GitLab