gnu: imv: Record absolute file name of 'imv' script.
* gnu/packages/image-viewers.scm (imv)[arguments]: Fix the 'imv-dir' script in the 'record-absolute-file-names' phase. Signed-off-by: Leo Famulari <leo@famulari.name>master
parent
1ec22406b2
commit
ce28d14a9c
|
@ -767,10 +767,12 @@ displayed in a terminal.")
|
||||||
(add-after 'install 'record-absolute-file-names
|
(add-after 'install 'record-absolute-file-names
|
||||||
(lambda _
|
(lambda _
|
||||||
;; 'imv' is a script that execs 'imv-x11' or 'imv-wayland'.
|
;; 'imv' is a script that execs 'imv-x11' or 'imv-wayland'.
|
||||||
;; Record their absolute file name.
|
;; 'imv-dir' execs 'imv'. Record their absolute file names.
|
||||||
(let ((bin (string-append #$output "/bin")))
|
(let ((bin (string-append #$output "/bin")))
|
||||||
(substitute* (string-append bin "/imv")
|
(substitute* (string-append bin "/imv")
|
||||||
(("imv-") (string-append bin "/imv-")))))))))
|
(("imv-") (string-append bin "/imv-")))
|
||||||
|
(substitute* (string-append bin "/imv-dir")
|
||||||
|
(("imv") (string-append bin "/imv")))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list asciidoc
|
(list asciidoc
|
||||||
pkg-config))
|
pkg-config))
|
||||||
|
|
Reference in New Issue