diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-02-11 23:05:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-02-11 23:23:28 +0100 |
commit | 2637cfd7a4894ef2a2a7da3bb46d8815c43d7e75 (patch) | |
tree | 8d8a29cb8581e9b3d3d4b560e3776a2adda23689 /build-aux | |
parent | 910d0121a8b6515febf0a02e4d23c249f98c0da2 (diff) | |
download | patches-2637cfd7a4894ef2a2a7da3bb46d8815c43d7e75.tar patches-2637cfd7a4894ef2a2a7da3bb46d8815c43d7e75.tar.gz |
Avoid name clash with 'build' from (guix store) and (guix status).
Since commit 976ef2d97887d16eab8d4eb9dad811786b04d690, (guix status)
exports 'build', which clashes with 'build' from (guix store).
* build-aux/run-system-tests.scm: Select 'with-status-verbosity'
from (guix status).
* guix/scripts/archive.scm: Likewise.
* guix/scripts/build.scm: Likewise.
* guix/scripts/copy.scm: Likewise.
* guix/scripts/environment.scm: Likewise.
* guix/scripts/pack.scm: Likewise.
* guix/scripts/package.scm: Likewise.
* guix/scripts/pull.scm: Likewise.
* guix/scripts/system.scm: Likewise.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/run-system-tests.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/run-system-tests.scm b/build-aux/run-system-tests.scm index fd1f6653af..18f7393d81 100644 --- a/build-aux/run-system-tests.scm +++ b/build-aux/run-system-tests.scm @@ -19,7 +19,7 @@ (define-module (run-system-tests) #:use-module (gnu tests) #:use-module (guix store) - #:use-module (guix status) + #:use-module ((guix status) #:select (with-status-verbosity)) #:use-module (guix monads) #:use-module (guix derivations) #:use-module (guix ui) |