mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 19:09:27 +01:00
build-system/dub: Fix configure docstring indentation.
* guix/build/dub-build-system.scm (configure): Reflow docstring. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
c67ea330d4
commit
ba95bbbac5
1 changed files with 4 additions and 4 deletions
|
@ -48,10 +48,10 @@
|
||||||
(_ #f)))
|
(_ #f)))
|
||||||
|
|
||||||
(define* (configure #:key inputs #:allow-other-keys)
|
(define* (configure #:key inputs #:allow-other-keys)
|
||||||
"Prepare one new directory with all the required dependencies.
|
"Prepare one new directory with all the required dependencies. It's necessary
|
||||||
It's necessary to do this (instead of just using /gnu/store as the
|
to do this (instead of just using /gnu/store as the directory) because we want
|
||||||
directory) because we want to hide the libraries in subdirectories
|
to hide the libraries in subdirectories lib/dub/... instead of polluting the
|
||||||
lib/dub/... instead of polluting the user's profile root."
|
user's profile root."
|
||||||
(let* ((dir (mkdtemp! "/tmp/dub.XXXXXX"))
|
(let* ((dir (mkdtemp! "/tmp/dub.XXXXXX"))
|
||||||
(vendor-dir (string-append dir "/vendor")))
|
(vendor-dir (string-append dir "/vendor")))
|
||||||
(setenv "HOME" dir)
|
(setenv "HOME" dir)
|
||||||
|
|
Loading…
Add table
Reference in a new issue