From: Laurentiu Palcu Date: Sun, 23 Sep 2012 14:14:27 +0000 (+0300) Subject: adt-installer: add sudo when relocating symlinks X-Git-Tag: 2015-4~9084 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=28823486ba8ce4d88bbad3cea696ce9fba0cc165;p=openembedded-core.git adt-installer: add sudo when relocating symlinks This is needed if installation is done in a directory that needs root privileges. Signed-off-by: Laurentiu Palcu Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal index 63fcf60012..9a1357366b 100755 --- a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal +++ b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal @@ -217,7 +217,7 @@ find $OECORE_NATIVE_SYSROOT -type f -exec file '{}' \;|grep ":.*ASCII.*text"|cut # 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 + $SUDO ln -sf $(readlink $l|sed -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:") $l done echo_info "\nSuccessfully installed selected native ADT!"