mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-25 01:48:08 +01:00
nongnu: clhs: Fix missing file:// scheme in documentation URLs.
* nongnu/packages/emacs.scm (clhs)[arguments]: Prefix hyperspec-dir with "file://".
This commit is contained in:
parent
eebd4c80c2
commit
67be35b7d3
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@
|
|||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(delete-file "clhs-use-local.el")
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(hyperspec-dir (string-append out "/share/HyperSpec-7-0/")))
|
||||
(hyperspec-dir (string-append "file://" out
|
||||
"/share/HyperSpec-7-0/")))
|
||||
(with-output-to-file "clhs.el"
|
||||
(lambda ()
|
||||
(format #t ";;;###autoload~%~s~%~%~s"
|
||||
|
|
Loading…
Reference in a new issue