gnu: universal-ctags: Store temporary files below "/tmp".
* gnu/packages/code.scm (universal-ctags)[arguments]: Add #:configure-flags.master
parent
0658cc83d2
commit
f8eaeea833
|
@ -367,7 +367,9 @@ features that are not supported by the standard @code{stdio} implementation.")
|
||||||
#t))))
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(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
|
(add-after 'unpack 'make-files-writable
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each make-file-writable (find-files "."))
|
(for-each make-file-writable (find-files "."))
|
||||||
|
|
Reference in New Issue