diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-12-07 14:16:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-07 15:14:12 +0100 |
commit | 6eac835f178c0c78637b0db8a4585a617b2f7622 (patch) | |
tree | 52c2fcaf3ef21158557202a892a4b0c44bfd11ed /gnu/packages | |
parent | ed9c8eb4e5f4ab5d51e3bb27ccb17bd5b43bb803 (diff) | |
download | guix-6eac835f178c0c78637b0db8a4585a617b2f7622.tar.gz guix-6eac835f178c0c78637b0db8a4585a617b2f7622.zip |
maint: update-guix-package: Really register GC roots.
Previously we'd pass a relative file name to 'add-indirect-root', which
the daemon would interpret as relative to "/". Consequently, checkouts
were not protected from GC.
* build-aux/update-guix-package.scm (main): Pass an absolute file name
to 'add-indirect-root'.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/package-management.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 588f8bbcef..4dd025786b 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -102,8 +102,8 @@ ;; Note: the 'update-guix-package.scm' script expects this definition to ;; start precisely like this. (let ((version "0.16.0") - (commit "c845323d4b0a31ce5241a9d98187e1eeed43f71c") - (revision 1)) + (commit "5227d938e2b7bda22e2a7aa733e1e09a6c726f18") + (revision 2)) (package (name "guix") @@ -119,7 +119,7 @@ (commit commit))) (sha256 (base32 - "0i431d5p9ckr7kxfiwpp94wgjgqn6mgyypf0smw64bk635fn6ycr")) + "0v1a99k0qpxa5ksgqqwydd1nb00hkd71fj7374rqhklvk0a2cdz9")) (file-name (string-append "guix-" version "-checkout")))) (build-system gnu-build-system) (arguments |