diff options
| author | Brendan Le Foll <brendan.le.foll@intel.com> | 2015-09-07 13:42:17 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-09 14:27:40 +0100 |
| commit | f5f9185344df1408e4bccfecd352373522721910 (patch) | |
| tree | 136a652da28bd10bb9ee92396305fd878114c295 | |
| parent | 6b41b7cc323e3bed2d0545019e7bdc8e006db1e9 (diff) | |
| download | poky-f5f9185344df1408e4bccfecd352373522721910.tar.gz | |
toolchain-shar-extract.sh: ensure extensible SDK install path obeys restrictions
There are some characters that cannot appear in the installation path, so we
need to check for these
(From OE-Core rev: 5aa9314c342004797e96c87868c5491ad70c13f9)
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/files/toolchain-shar-extract.sh | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/meta/files/toolchain-shar-extract.sh b/meta/files/toolchain-shar-extract.sh index 3a50991031..85719fa4ab 100644 --- a/meta/files/toolchain-shar-extract.sh +++ b/meta/files/toolchain-shar-extract.sh | |||
| @@ -85,9 +85,18 @@ else | |||
| 85 | target_sdk_dir=$(readlink -m "$target_sdk_dir") | 85 | target_sdk_dir=$(readlink -m "$target_sdk_dir") |
| 86 | fi | 86 | fi |
| 87 | 87 | ||
| 88 | if [ -n "$(echo $target_sdk_dir|grep ' ')" ]; then | 88 | if [ "$SDK_EXTENSIBLE" = "1" ]; then |
| 89 | echo "The target directory path ($target_sdk_dir) contains spaces. Abort!" | 89 | # We're going to be running the build system, additional restrictions apply |
| 90 | exit 1 | 90 | if echo "$target_sdk_dir" | grep -q '[+\ @]'; then |
| 91 | echo "The target directory path ($target_sdk_dir) contains illegal" \ | ||
| 92 | "characters such as spaces, @ or +. Abort!" | ||
| 93 | exit 1 | ||
| 94 | fi | ||
| 95 | else | ||
| 96 | if [ -n "$(echo $target_sdk_dir|grep ' ')" ]; then | ||
| 97 | echo "The target directory path ($target_sdk_dir) contains spaces. Abort!" | ||
| 98 | exit 1 | ||
| 99 | fi | ||
| 91 | fi | 100 | fi |
| 92 | 101 | ||
| 93 | if [ -e "$target_sdk_dir/environment-setup-@REAL_MULTIMACH_TARGET_SYS@" ]; then | 102 | if [ -e "$target_sdk_dir/environment-setup-@REAL_MULTIMACH_TARGET_SYS@" ]; then |
