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:35 +0000 |
commit | b690b8dc634844b4f6672d524f0e6f1d86dc4e20 (patch) | |
tree | e75e16415bdf892769d68f6eaa0811120d8006dc /meta | |
parent | ca4932b60f464430266cc43e34122b2973e8a200 (diff) | |
download | openembedded-core-contrib-b690b8dc634844b4f6672d524f0e6f1d86dc4e20.tar.gz |
populate_sdk_ext: fix == bashism
Found via verify-bashisms.
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 39e0c83fe4b..9517111b3c5 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass @@ -512,7 +512,7 @@ install_tools() { # We can't use the same method as above because files in the sysroot won't exist at this point # (they get populated from sstate on installation) unfsd_path="${SDK_OUTPUT}/${SDKPATHNATIVE}${bindir_nativesdk}/unfsd" - if [ "${SDK_INCLUDE_TOOLCHAIN}" == "1" -a ! -e $unfsd_path ] ; then + if [ "${SDK_INCLUDE_TOOLCHAIN}" = "1" -a ! -e $unfsd_path ] ; then binrelpath=${@os.path.relpath(d.getVar('STAGING_BINDIR_NATIVE'), d.getVar('TMPDIR'))} lnr ${SDK_OUTPUT}/${SDKPATH}/tmp/$binrelpath/unfsd $unfsd_path fi |