diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 10f3975b98..42c0d39749 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass | |||
@@ -174,6 +174,11 @@ fi | |||
174 | # replace ${SDKPATH} with the new prefix in all text files: configs/scripts/etc | 174 | # replace ${SDKPATH} with the new prefix in all text files: configs/scripts/etc |
175 | find $native_sysroot -type f -exec file '{}' \;|grep ":.*ASCII.*text"|cut -d':' -f1|xargs sed -i -e "s:$DEFAULT_INSTALL_DIR:$target_sdk_dir:g" | 175 | find $native_sysroot -type f -exec file '{}' \;|grep ":.*ASCII.*text"|cut -d':' -f1|xargs sed -i -e "s:$DEFAULT_INSTALL_DIR:$target_sdk_dir:g" |
176 | 176 | ||
177 | # change all symlinks pointing to ${SDKPATH} | ||
178 | for l in $(find $native_sysroot -type l); do | ||
179 | ln -sf $(readlink $l|sed -e "s:$DEFAULT_INSTALL_DIR:$target_sdk_dir:") $l | ||
180 | done | ||
181 | |||
177 | echo done | 182 | echo done |
178 | 183 | ||
179 | # delete the relocating script, so that user is forced to re-run the installer | 184 | # delete the relocating script, so that user is forced to re-run the installer |