diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-29 09:00:51 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-29 09:00:56 +0100 |
commit | cd1fdd05cc7457706d1e40042854c154cbb3d9e9 (patch) | |
tree | fa5ea063646d672bca20c63fb12db209ce92f98a /meta/classes/populate_sdk_base.bbclass | |
parent | d6c55f6910270e395f668c9114ec374b44c57538 (diff) | |
download | openembedded-core-contrib-cd1fdd05cc7457706d1e40042854c154cbb3d9e9.tar.gz |
populate_sdk_base: Remove confusing echo
Remove a confusing echo after the previous commit, thanks for a suggestion
from Laurentiu.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
A
Diffstat (limited to 'meta/classes/populate_sdk_base.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 97cf1fb6092..a12bf1169e2 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass @@ -177,8 +177,6 @@ fi if [ "$target_sdk_dir" = "" ]; then read -e -p "Enter target directory for SDK (default: $DEFAULT_INSTALL_DIR): " target_sdk_dir [ "$target_sdk_dir" = "" ] && target_sdk_dir=$DEFAULT_INSTALL_DIR -else - echo "$target_sdk_dir" fi eval target_sdk_dir=$(echo "$target_sdk_dir"|sed 's/ /\\ /g') |