glibmm: use ${bindir_native}

With the current ${bindir} the build fails if BBCLASSEXTEND'ing to
nativesdk and enabling maintainer-mode.

Fixes: 3d0279c187 ("glibmm: fix reproducibility issues")
Signed-off-by: Christian Eggers <ceggers@arri.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Christian Eggers 2024-11-04 16:15:13 +01:00 committed by Khem Raj
parent dbf103d4cd
commit 7e0b56f3c6
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -24,7 +24,7 @@ EXTRA_OEMESON += "--cross-file=${WORKDIR}/meson-${PN}.cross -Dmaintainer-mode=fa
do_write_config:append() {
cat >${WORKDIR}/meson-${PN}.cross <<EOF
[binaries]
m4 = '${bindir}/m4'
perl = '${bindir}/perl'
m4 = '${bindir_native}/m4'
perl = '${bindir_native}/perl'
EOF
}