mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
build-self: Do not rely on '%store-database-directory'.
Guix'es older than one week don't have this variable so requiring it would break things for them. * build-aux/build-self.scm (%config-variables): Remove '%store-database-directory'.
This commit is contained in:
parent
92d581a0fd
commit
d6b5aa0b03
1 changed files with 3 additions and 1 deletions
|
@ -71,7 +71,9 @@ (define %config-variables
|
|||
(cons `(variable . ,variable)
|
||||
(variables rest ...))))))
|
||||
(variables %config-directory %localstatedir %state-directory
|
||||
%store-database-directory %store-directory
|
||||
;; Note: No '%store-database-directory', which is too recent
|
||||
;; and unnecessary anyway.
|
||||
%store-directory
|
||||
%storedir %sysconfdir %system)))
|
||||
|
||||
(define* (make-config.scm #:key libgcrypt zlib gzip xz bzip2
|
||||
|
|
Loading…
Reference in a new issue