mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
SDK: relocate symlinks too
The directory usr/libexec/ in the SDK sysroot contains the default symlinks to the toolchain binaries and these, too, need to point to the correct toolchain path. [YOCTO #3090] (From OE-Core rev: 6e4923c0c9b218271fd44d78df9987b5cabb1c03) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b6867e80b9
commit
04877f768e
@@ -174,6 +174,11 @@ fi
|
|||||||
# replace ${SDKPATH} with the new prefix in all text files: configs/scripts/etc
|
# replace ${SDKPATH} with the new prefix in all text files: configs/scripts/etc
|
||||||
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"
|
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"
|
||||||
|
|
||||||
|
# change all symlinks pointing to ${SDKPATH}
|
||||||
|
for l in $(find $native_sysroot -type l); do
|
||||||
|
ln -sf $(readlink $l|sed -e "s:$DEFAULT_INSTALL_DIR:$target_sdk_dir:") $l
|
||||||
|
done
|
||||||
|
|
||||||
echo done
|
echo done
|
||||||
|
|
||||||
# delete the relocating script, so that user is forced to re-run the installer
|
# delete the relocating script, so that user is forced to re-run the installer
|
||||||
|
|||||||
@@ -215,6 +215,11 @@ $SUDO sed -i -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:g" $env_setup_scr
|
|||||||
find $OECORE_NATIVE_SYSROOT -type f -exec file '{}' \;|grep ":.*ASCII.*text"|cut -d':' -f1|\
|
find $OECORE_NATIVE_SYSROOT -type f -exec file '{}' \;|grep ":.*ASCII.*text"|cut -d':' -f1|\
|
||||||
xargs $SUDO sed -i -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:g"
|
xargs $SUDO sed -i -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:g"
|
||||||
|
|
||||||
|
# change all symlinks pointing to /opt/${DISTRO}/${SDK_VERSION}
|
||||||
|
for l in $(find $NATIVE_INSTALL_DIR -type l); do
|
||||||
|
ln -sf $(readlink $l|sed -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:") $l
|
||||||
|
done
|
||||||
|
|
||||||
echo_info "\nSuccessfully installed selected native ADT!"
|
echo_info "\nSuccessfully installed selected native ADT!"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user