diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2012-12-04 14:16:12 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-04 13:01:22 +0000 |
commit | 555d03c466490ab12b2b1d049736593da2334e97 (patch) | |
tree | 498e31fba4ebf1212ff30200aec0c8d89b918182 /meta/classes/populate_sdk_base.bbclass | |
parent | 4c18e34f113bc46b0619fc8576475694224f8b40 (diff) | |
download | openembedded-core-555d03c466490ab12b2b1d049736593da2334e97.tar.gz openembedded-core-555d03c466490ab12b2b1d049736593da2334e97.tar.bz2 openembedded-core-555d03c466490ab12b2b1d049736593da2334e97.zip |
populate_sdk_base: mkdir was missing $SUDO_EXEC prefix
mkdir was in the wrong place and missing sudo rights. Hence, the
installation to default location (or any other for which the user didn't
have rights) would fail. Unless the installer itself is run with sudo.
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_base.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 691ae45c93..f0b88b34c3 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass @@ -187,9 +187,6 @@ if [ "$answer" != "Y" -a "$answer" != "y" ]; then exit 1 fi -# create dir and don't care about the result. -mkdir -p $target_sdk_dir >/dev/null 2>&1 - # if don't have the right to access dir, gain by sudo if [ ! -x $target_sdk_dir -o ! -w $target_sdk_dir -o ! -r $target_sdk_dir ]; then SUDO_EXEC=$(which "sudo") @@ -203,6 +200,9 @@ if [ ! -x $target_sdk_dir -o ! -w $target_sdk_dir -o ! -r $target_sdk_dir ]; the [ $? -ne 0 ] && echo "Sorry, you are not allowed to execute as root." && exit 1 fi +# create dir and don't care about the result. +$SUDO_EXEC mkdir -p $target_sdk_dir >/dev/null 2>&1 + payload_offset=$(($(grep -na -m1 "^MARKER:$" $0|cut -d':' -f1) + 1)) printf "Extracting SDK..." |