[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: install: Use the actual store name when building the tarball.
From: |
Ludovic Courtès |
Subject: |
01/04: install: Use the actual store name when building the tarball. |
Date: |
Wed, 27 May 2015 20:38:29 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 781d0a2ce17e2a6deaf924ee27d5149e271a5122
Author: Ludovic Courtès <address@hidden>
Date: Wed May 27 17:40:49 2015 +0200
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 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index 007bd25..cacd089 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -79,7 +79,7 @@ under /root/.guix-profile where GUIX is installed."
;; extracting the archive.
"./root/.guix-profile"
"./var/guix"
- "./gnu")))))
+ (string-append "." (%store-directory)))))))
(gexp->derivation "guix-tarball.tar.xz" build
#:references-graphs `(("profile" ,profile))