nativesdk-qtbase: fix permissions on directory by qtbase

There is a permissions conflict between qtbase and cmake installing
the environment-setup.d directory. This workaround creates the
directory in the do_install() step to avoid the conflict in the
do_generate_qt_environment_file() step.

https://jira.digi.com/browse/DEL-5583

Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
Arturo Buzarra 2018-01-12 16:32:06 +01:00
parent 7852b69a3c
commit a5ac2deca3
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# Copyright (C) 2018 Digi International
do_install_append_class-nativesdk() {
mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d
}