diff options
author | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-03-28 14:32:24 -0300 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-03-28 14:32:36 -0300 |
commit | 4df327a69b9739929433f8bb7eb0c030a70d4e6d (patch) | |
tree | 647fa745f95320347ab6129400acc8709c71710e | |
parent | 95d525f43a5a729c46b07662bf7fccc15da154f7 (diff) |
uninstalled: Take into account -good pkgconfig uninstalled file
-rwxr-xr-x | gst-uninstalled.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst-uninstalled.py b/gst-uninstalled.py index 7a2ebf8..22cbfae 100755 --- a/gst-uninstalled.py +++ b/gst-uninstalled.py @@ -107,6 +107,10 @@ def get_subprocess_env(options): for pkg_dir in pkg_dirs: prepend_env_var(env, "PKG_CONFIG_PATH", pkg_dir) + prepend_env_var(env, "PKG_CONFIG_PATH", os.path.join(options.builddir, + 'subprojects', + 'gst-plugins-good', + 'pkgconfig')) mesonpath = os.path.join(SCRIPTDIR, "meson") if os.path.join(mesonpath): |