diff options
author | Timotej Lazar <timotej.lazar@araneo.si> | 2023-02-05 13:23:50 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2023-02-05 14:03:21 +0100 |
commit | ce28d14a9cdc2002b48acfe1b1bb627bc6a9c9d8 (patch) | |
tree | 5298ed9576a70f90d14abeda8f886940123cc8ce | |
parent | 1ec22406b2f773e6c901b4afbc1a7723855a66f8 (diff) | |
download | guix-ce28d14a9cdc2002b48acfe1b1bb627bc6a9c9d8.tar.gz |
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>
-rw-r--r-- | gnu/packages/image-viewers.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 02e25aee5f..1879b9949c 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -767,10 +767,12 @@ displayed in a terminal.") (add-after 'install 'record-absolute-file-names (lambda _ ;; '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"))) (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 (list asciidoc pkg-config)) |