diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-04-17 19:57:07 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-18 16:28:22 +0100 |
commit | 9fe7738f4a567d1b00e94352d03bc5031583c259 (patch) | |
tree | 8279ec8e92b32937a0bf7c2cb2e4dd5b77a58a38 /meta/recipes-core | |
parent | ed07f43e6898011d7b46eb1803c580e7a8cbfc93 (diff) | |
download | poky-9fe7738f4a567d1b00e94352d03bc5031583c259.tar.gz |
buildtools-tarball.bb: fix unexpected operator
Fixed:
run.create_sdk_files.45747: 131: [: =: unexpected operator
The SDKMACHINE is not set by default.
(From OE-Core rev: 528388c3cef027d436fc794c73d57a247521c238)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/buildtools-tarball.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/buildtools-tarball.bb b/meta/recipes-core/meta/buildtools-tarball.bb index 7186ac4aa1..d39bd9ac51 100644 --- a/meta/recipes-core/meta/buildtools-tarball.bb +++ b/meta/recipes-core/meta/buildtools-tarball.bb | |||
@@ -58,7 +58,7 @@ create_sdk_files_append () { | |||
58 | 58 | ||
59 | echo 'export GIT_SSL_CAINFO="${SDKPATHNATIVE}${sysconfdir}/ssl/certs/ca-certificates.crt"' >>$script | 59 | echo 'export GIT_SSL_CAINFO="${SDKPATHNATIVE}${sysconfdir}/ssl/certs/ca-certificates.crt"' >>$script |
60 | 60 | ||
61 | if [ ${SDKMACHINE} = "i686" ]; then | 61 | if [ "${SDKMACHINE}" = "i686" ]; then |
62 | echo 'export NO32LIBS="0"' >>$script | 62 | echo 'export NO32LIBS="0"' >>$script |
63 | echo 'echo "$BB_ENV_EXTRAWHITE" | grep -q "NO32LIBS"' >>$script | 63 | echo 'echo "$BB_ENV_EXTRAWHITE" | grep -q "NO32LIBS"' >>$script |
64 | echo '[ $? != 0 ] && export BB_ENV_EXTRAWHITE="NO32LIBS $BB_ENV_EXTRAWHITE"' >>$script | 64 | echo '[ $? != 0 ] && export BB_ENV_EXTRAWHITE="NO32LIBS $BB_ENV_EXTRAWHITE"' >>$script |