diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-30 16:30:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-30 16:30:49 +0100 |
commit | a9ebd9efd0d97159acbec848ad5fe06f022c8235 (patch) | |
tree | 718f8a04ac525537ed2e297bf38bbedb68f4e8f1 /guix/packages.scm | |
parent | fd060fd30da53f2b0856f6f451f8fd7b8c760d70 (diff) |
store: Remove the `fixed?' parameter from `add-to-store'.
* guix/store.scm (add-to-store): Remove the `fixed?' parameter from the
public interface.
* gnu/packages/bootstrap.scm, guix-download.in, guix/derivations.scm,
guix/packages.scm, tests/derivations.scm: Update all callers
accordingly.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index f1cd83c7e4..4d3b499bf4 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -248,8 +248,7 @@ PACKAGE for SYSTEM." (define (intern file) ;; Add FILE to the store. Set the `recursive?' bit to #t, so that ;; file permissions are preserved. - (add-to-store store (basename file) - #t #t "sha256" file)) + (add-to-store store (basename file) #t "sha256" file)) (define expand-input ;; Expand the given input tuple such that it contains only |