diff options
-rw-r--r-- | gnu/packages/code.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 86f633a28b..4e30dacdf4 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -367,7 +367,9 @@ features that are not supported by the standard @code{stdio} implementation.") #t)))) (build-system gnu-build-system) (arguments - '(#:phases (modify-phases %standard-phases + '(;; Don't use the build-time TMPDIR (/tmp/guix-build-...) at runtime. + #:configure-flags '("--enable-tmpdir=/tmp") + #:phases (modify-phases %standard-phases (add-after 'unpack 'make-files-writable (lambda _ (for-each make-file-writable (find-files ".")) |