From a5ac2deca3e96fc1d6975761420b05aa80053ab1 Mon Sep 17 00:00:00 2001 From: Arturo Buzarra Date: Fri, 12 Jan 2018 16:32:06 +0100 Subject: [PATCH] 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 --- meta-digi-dey/recipes-qt/qt5/nativesdk-qtbase_%.bbappend | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 meta-digi-dey/recipes-qt/qt5/nativesdk-qtbase_%.bbappend diff --git a/meta-digi-dey/recipes-qt/qt5/nativesdk-qtbase_%.bbappend b/meta-digi-dey/recipes-qt/qt5/nativesdk-qtbase_%.bbappend new file mode 100644 index 000000000..d114142b3 --- /dev/null +++ b/meta-digi-dey/recipes-qt/qt5/nativesdk-qtbase_%.bbappend @@ -0,0 +1,5 @@ +# Copyright (C) 2018 Digi International + +do_install_append_class-nativesdk() { + mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d +}