Skip to content
Snippets Groups Projects
Commit e2123175 authored by Alexandre Janniaux's avatar Alexandre Janniaux Committed by Nicolas Pomepuy
Browse files

buildsystem: libvlc: define PKG_CONFIG_LIBDIR

Define PKG_CONFIG_LIBDIR to avoid use pkg-config files from the system.
It didn't happen before because we were using absolute path to the
contribs pkg-config files, so it's not actually fixing a current issue.

We keep PKG_CONFIG_PATH because we must use the same PKG_CONFIG_PATH as
the actual libvlc build, ie. not use anything outside of contribs
currently.

(cherry picked from commit b8527868)
parent 12cf99f5
No related branches found
No related tags found
1 merge request!7943.3.x
......@@ -230,6 +230,7 @@ avlc_pkgconfig()
{
# Enforce pkg-config files coming from VLC contribs
PKG_CONFIG_PATH="$VLC_CONTRIB/lib/pkgconfig/" \
PKG_CONFIG_LIBDIR="$VLC_CONTRIB/lib/pkgconfig/" \
pkg-config "$@"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment