gnu: eog: Ensure RUNPATH contains output library directory.
* gnu/packages/gnome.scm (eog)[arguments]: Pass configure flag to add $out/lib/eog to RUNPATH.
This commit is contained in:
parent
a6d378e2e7
commit
34c44a34ab
1 changed files with 5 additions and 1 deletions
|
@ -3976,7 +3976,11 @@ (define-public eog
|
|||
"1gasrfqi7qrzdq1idh29r0n6ikkqjb6pbp7a8k5krfz5hkhyfin0"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(#:configure-flags
|
||||
;; Otherwise, the RUNPATH will lack the final 'eog' path component.
|
||||
(list (string-append "-Dc_link_args=-Wl,-rpath="
|
||||
(assoc-ref %outputs "out") "/lib/eog"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'wrap-eog
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue