From 03b94f44004e65ff6ecf7c4ab5b2b8e1a2be2c71 Mon Sep 17 00:00:00 2001 From: Manoj Gupta Date: Fri, 4 Mar 2016 09:41:34 +0530 Subject: [PATCH] corrected spelling mistakes Change-Id: Ia4e0f2fe476760f9050648726281ab8899509215 Signed-off-by: Manoj Gupta Reviewed-on: https://gerrit.iotivity.org/gerrit/5389 Reviewed-by: Phil Coval Tested-by: jenkins-iotivity Reviewed-by: Jon A. Cruz --- Readme.scons.txt | 2 +- scons_script_how_to.txt | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Readme.scons.txt b/Readme.scons.txt index 3d81eae..56f5f02 100644 --- a/Readme.scons.txt +++ b/Readme.scons.txt @@ -202,7 +202,7 @@ Tizen: $ scons TARGET_OS=tizen TARGET_TRANSPORT=ALL -c (for clean) (we provide the spec file required by gbs tool at toools/tizen directory. -gbs is default build tool for Tizen platfrom, we can refer the following +gbs is default build tool for Tizen platform, we can refer the following wiki to setup Tizen development environment: https://source.tizen.org/documentation/developer-guide/getting-started-guide) diff --git a/scons_script_how_to.txt b/scons_script_how_to.txt index 4e34cc2..832cc76 100644 --- a/scons_script_how_to.txt +++ b/scons_script_how_to.txt @@ -227,7 +227,7 @@ need restrictly follow it. ==== The content of a typical script ==== -After run the scripts in build_common (usally it's done at the beginning of +After run the scripts in build_common (usually it's done at the beginning of SConstruct), an global environment 'env' is exported, 'env' has include the default configuration of the target OS and arch. 'env' is used in all projects, should avoid to change its keys. To avoid change 'env', usually clone 'env' and @@ -235,13 +235,13 @@ update it accroding to the requirement of current sub project. Then specify the target(usually binary) to build. Below is an example: - # import the global enviroment 'env' + # import the global environment 'env' Import('env') - # Clone a new enviroment from 'env' + # Clone a new environment from 'env' new_env = env.Clone() - # Update the new enviroment, usally include add header file paths, + # Update the new environment, usually include add header file paths, # library path, libs to link and other compiler flags. This part is # optional. new_env.AppeneUnique(xxx = [ .... ]) -- 2.7.4