diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2018-10-30 14:09:59 +0000 |
---|---|---|
committer | Stéphane Desneux <stephane.desneux@iot.bzh> | 2018-11-01 12:39:46 +0000 |
commit | 7b247c673af5283aa5189ccf5d6ea645612b5bad (patch) | |
tree | e893c1217a9a0f5cb7694ea532f313435dd8ca05 | |
parent | c3be66454c28b2b4c6e57cc31663a17fcaf1c6a9 (diff) |
meta-app-framework/base-files: fix /usr/local symlink target path
/usr/local should point to ../var/local (and not ../../var/local)
Thanks to Vasyl Vavrychuk <vvavrychuk@gmail.com>
Bug-AGL: SPEC-1844
Change-Id: I700065290deff979db2e74cb68eae78ef55cda9c
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
(cherry picked from commit 51443b5dc8ed1a7631f804be9ab0864837982ba8)
-rw-r--r-- | meta-app-framework/recipes-core/base-files/base-files_%.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-app-framework/recipes-core/base-files/base-files_%.bbappend b/meta-app-framework/recipes-core/base-files/base-files_%.bbappend index b837d03ad..536ce8075 100644 --- a/meta-app-framework/recipes-core/base-files/base-files_%.bbappend +++ b/meta-app-framework/recipes-core/base-files/base-files_%.bbappend @@ -10,7 +10,7 @@ do_install_append() { else install -m 0755 -d ${D}/var/local fi - ln -s ../../var/local ${D}/usr/local + ln -s ../var/local ${D}/usr/local } do_install_append_with-lsm-smack () { |