meson: Add libdir on gitg's rpath

If `libdir` is set in a custom directory, `gitg` will not be able to
find `libgitg` and `libgitg-ext`.

`libdir` has been set as the `rpath` in `gitg` so when a custom
`libdir` directory is used `libgitg` and `libgitg-ext` will be
found.

Fixes #174
This commit is contained in:
Iñigo Martínez 2018-12-24 10:30:58 +01:00
parent 79186d5c04
commit c83122140a

View file

@ -134,4 +134,5 @@ executable(
c_args: cflags,
vala_args: vala_flags,
install: true,
install_rpath: gitg_libdir,
)