Merge pull request #42529 from mkaito/mesa-pkgconfig

mesa: point pkgconfig at $drivers
This commit is contained in:
Matthew Bauer 2018-07-05 22:17:14 -04:00 committed by GitHub
commit 4bbca076ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,6 +205,11 @@ let self = stdenv.mkDerivation {
for js in $drivers/share/glvnd/egl_vendor.d/*.json; do
substituteInPlace "$js" --replace '"libEGL_' '"'"$drivers/lib/libEGL_"
done
# Update search path used by pkg-config
for pc in $dev/lib/pkgconfig/*.pc; do
substituteInPlace "$pc" --replace $out $drivers
done
'' + optionalString (vulkanDrivers != []) ''
# Update search path used by Vulkan (it's pointing to $out but
# drivers are in $drivers)