diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-02-02 12:46:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-02-02 12:46:36 +0100 |
commit | 01d8ac64abaac9202c32848f7c4a394393ba6534 (patch) | |
tree | 124eabc415a9cb8303ae8a114d248df4e8670de5 /guix/store.scm | |
parent | bd98ad1fbcc572a292bb98b2c667dcb48bf7cc49 (diff) | |
download | gnu-guix-01d8ac64abaac9202c32848f7c4a394393ba6534.tar gnu-guix-01d8ac64abaac9202c32848f7c4a394393ba6534.tar.gz |
store: Remove 'build-derivations'.
* guix/store.scm (build-derivations): Remove.
* guix/derivations.scm (build-derivations): Write in terms of
'build-things'.
* doc/guix.texi (Invoking guix build): Adjust text accordingly.
Diffstat (limited to 'guix/store.scm')
-rw-r--r-- | guix/store.scm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/guix/store.scm b/guix/store.scm index 5618fa340a..02d84eb517 100644 --- a/guix/store.scm +++ b/guix/store.scm @@ -64,7 +64,6 @@ add-to-store build-things build - build-derivations add-temp-root add-indirect-root add-permanent-root @@ -582,9 +581,6 @@ that are not derivations can only be substituted and not built locally. Return #t on success." boolean) -;; Deprecated name for 'build-things'. -(define build-derivations build-things) - (define-operation (add-temp-root (store-path path)) "Make PATH a temporary root for the duration of the current session. Return #t." |