diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-06-01 23:03:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-02 00:43:49 +0200 |
commit | e3a87d770f8be330259ef92348e0cf0a392bb24d (patch) | |
tree | e2a0eb4d058b1c5448249b2e4df76b1a1550a1d9 | |
parent | 1a3e3162acafd32ff2fb675f2f780d986692c52d (diff) | |
download | patches-e3a87d770f8be330259ef92348e0cf0a392bb24d.tar patches-e3a87d770f8be330259ef92348e0cf0a392bb24d.tar.gz |
self: Improve backtraces for 'imported-files'.
* guix/self.scm (imported-files): Pass #:env-vars.
-rw-r--r-- | guix/self.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/self.scm b/guix/self.scm index 3503fbda43..1b2a73e8f7 100644 --- a/guix/self.scm +++ b/guix/self.scm @@ -502,7 +502,8 @@ list of file-name/file-like objects suitable as inputs to 'imported-files'." ;; We're just copying files around, no need to substitute or offload it. (computed-file name build #:options '(#:local-build? #t - #:substitutable? #f))) + #:substitutable? #f + #:env-vars (("COLUMNS" . "200"))))) (define* (compiled-modules name module-tree modules #:optional |