diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2017-01-31 13:50:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 15:28:41 +0000 |
commit | a15895dac117007fe922bfe5707493ff1215ac56 (patch) | |
tree | df8d15c2e12f1d1a9135a52ea5d3d6a8a99f3581 /meta/classes | |
parent | 0b95e47180588306ad72f6ee0a6a65937a2c74b0 (diff) | |
download | poky-a15895dac117007fe922bfe5707493ff1215ac56.tar.gz |
populate_sdk_ext: fix == bashism
Found via verify-bashisms.
(From OE-Core rev: b690b8dc634844b4f6672d524f0e6f1d86dc4e20)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 39e0c83fe4..9517111b3c 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -512,7 +512,7 @@ install_tools() { | |||
512 | # We can't use the same method as above because files in the sysroot won't exist at this point | 512 | # We can't use the same method as above because files in the sysroot won't exist at this point |
513 | # (they get populated from sstate on installation) | 513 | # (they get populated from sstate on installation) |
514 | unfsd_path="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/unfsd" | 514 | unfsd_path="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/unfsd" |
515 | if [ "${SDK_INCLUDE_TOOLCHAIN}" == "1" -a ! -e $unfsd_path ] ; then | 515 | if [ "${SDK_INCLUDE_TOOLCHAIN}" = "1" -a ! -e $unfsd_path ] ; then |
516 | binrelpath=${@os.path.relpath(d.getVar('STAGING_BINDIR_NATIVE'), d.getVar('TMPDIR'))} | 516 | binrelpath=${@os.path.relpath(d.getVar('STAGING_BINDIR_NATIVE'), d.getVar('TMPDIR'))} |
517 | lnr ${SDK_OUTPUT}/${SDKPATH}/tmp/$binrelpath/unfsd $unfsd_path | 517 | lnr ${SDK_OUTPUT}/${SDKPATH}/tmp/$binrelpath/unfsd $unfsd_path |
518 | fi | 518 | fi |