plasma-mobile.inc: fix buildpaths qa issue

While migrating to walnascar we get:
```
ERROR: plasma-mobile-6.3.4-r0 do_package_qa: QA Issue: File /usr/src/debug/plasma-mobile/6.3.4/components/mobileshellstate/mobileadaptor.h in package plasma-mobile-src contains reference to TMPDIR [buildpaths]
ERROR: plasma-mobile-6.3.4-r0 do_package_qa: Fatal QA errors were found, failing task.
```

Fix the path so that it's possible to do reproducible builds.
This commit is contained in:
Maxime Roussin-Belanger
2025-07-30 14:21:21 -04:00
parent bf59024798
commit 531e9355e2

View File

@@ -78,3 +78,7 @@ RDEPENDS:${PN} += " \
qqc2-breeze-style \
kde-cli-tools \
"
do_compile:append() {
sed -i -e 's,${S}/components/mobileshellstate/,,g' ${B}/components/mobileshellstate/mobileadaptor.h
}