guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/09: gnu: universal-ctags: Store temporary files below "/tmp".


From: guix-commits
Subject: 02/09: gnu: universal-ctags: Store temporary files below "/tmp".
Date: Thu, 22 Oct 2020 12:49:05 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit f8eaeea83394e273eab0802bedad415b67a7c546
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Wed Oct 21 17:06:14 2020 +0200

    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 86f633a..4e30dac 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 "."))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]