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:
Ricardo Wurmus 2018-11-30 08:54:54 +01:00
parent a6d378e2e7
commit 34c44a34ab
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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)