sdk: tell qmake to sysrootify all paths

Qmake is no longer using sysroot by default, add config in qt.conf
to make it happen when using from nativesdk.
This commit is contained in:
Samuli Piippo 2020-08-25 10:05:30 +03:00
parent 67d1c04d53
commit 69b4e15f1c

View File

@ -26,6 +26,7 @@ create_sdk_files_prepend () {
echo 'Sysroot = ${SDKTARGETSYSROOT}' >> $qtconf
echo 'HostSpec = linux-oe-g++' >> $qtconf
echo 'TargetSpec = linux-oe-g++' >> $qtconf
echo 'SysrootifyPrefix = true' >> $qtconf
install -d ${SDK_OUTPUT}${SDKPATHNATIVE}/environment-setup.d
script=${SDK_OUTPUT}${SDKPATHNATIVE}/environment-setup.d/qt6.sh