qt6.qtbase: fix the libexecdir in the pkg-config config file

A few lines above this change, libexec is explicitly moved to the dev
output. Therefore the pkg-config should point to it too.
This commit is contained in:
Lily Foster
2023-01-10 19:08:54 -05:00
parent d81bc4beae
commit 4fc551f4dd
@@ -270,7 +270,8 @@ stdenv.mkDerivation rec {
# fixup .pc file (where to find 'moc' etc.)
sed -i "$dev/lib/pkgconfig/Qt6Core.pc" \
-e "/^bindir=/ c bindir=$dev/bin"
-e "/^bindir=/ c bindir=$dev/bin" \
-e "/^libexecdir=/ c libexecdir=$dev/libexec"
patchShebangs $out $dev
'';