diff options
-rwxr-xr-x | meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal | 7 |
1 files changed, 7 insertions, 0 deletions
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 25c955a5cb..16677e71f1 100755 --- a/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal +++ b/meta/recipes-devtools/installer/adt-installer/scripts/adt_installer_internal | |||
@@ -220,6 +220,13 @@ for l in $(find $NATIVE_INSTALL_DIR -type l); do | |||
220 | $SUDO ln -sfn $(readlink $l|sed -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:") $l | 220 | $SUDO ln -sfn $(readlink $l|sed -e "s:$DEFAULT_INSTALL_FOLDER:$NATIVE_INSTALL_DIR:") $l |
221 | done | 221 | done |
222 | 222 | ||
223 | # find out all perl scripts in $OECORE_NATIVE_SYSROOT and modify them | ||
224 | # replacing the host perl with SDK perl. | ||
225 | for perl_script in $($SUDO grep -m 1 "^#!.*perl" -rl $OECORE_NATIVE_SYSROOT); do | ||
226 | $SUDO sed -i -e "s:^#! */usr/bin/perl.*:#! /usr/bin/env perl:g" -e \ | ||
227 | "s: /usr/bin/perl: /usr/bin/env perl:g" $perl_script | ||
228 | done | ||
229 | |||
223 | echo_info "\nSuccessfully installed selected native ADT!" | 230 | echo_info "\nSuccessfully installed selected native ADT!" |
224 | } | 231 | } |
225 | 232 | ||