From f8eaeea83394e273eab0802bedad415b67a7c546 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 21 Oct 2020 17:06:14 +0200 Subject: gnu: universal-ctags: Store temporary files below "/tmp". * gnu/packages/code.scm (universal-ctags)[arguments]: Add #:configure-flags. --- gnu/packages/code.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 ".")) -- cgit v1.2.3