summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGenaro Saucedo Tejada <genaro.saucedo.tejada@intel.com>2016-08-05 15:54:16 -0500
committerInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>2016-08-05 23:11:24 +0000
commitc3341b8a67be41483b8e086d43a88ab8144d268b (patch)
tree12ac58c8b84b9ba6358c07e17c63c67dce9fb823 /doc
parentf9ae718824fc24a245808c2050b61e08ff9745eb (diff)
doc: removed unneeded variable from guide
Mac OS X guide had an unneeded transient variable. JIRA: ZEP-616 Change-Id: I1a7cea35830bb786b67aee235337f89c62a4b69f Signed-off-by: Genaro Saucedo Tejada <genaro.saucedo.tejada@intel.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/getting_started/installation_mac.rst6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/getting_started/installation_mac.rst b/doc/getting_started/installation_mac.rst
index cadb77180..14fdb3d44 100644
--- a/doc/getting_started/installation_mac.rst
+++ b/doc/getting_started/installation_mac.rst
@@ -172,9 +172,7 @@ and use the target location where the toolchain was installed, type:
$ export ZEPHYR_GCC_VARIANT=xtools
- $ export ZEPHYR_SDK_INSTALL_DIR=/Volumes/CrossToolNG/x-tools
-
- $ export XTOOLS_TOOLCHAIN_PATH=$ZEPHYR_SDK_INSTALL_DIR
+ $ export XTOOLS_TOOLCHAIN_PATH=/Volumes/CrossToolNG/x-tools
To use the same toolchain in new sessions in the future you can set the
@@ -183,7 +181,7 @@ variables in the file :file:`${HOME}/.zephyrrc`, for example:
.. code-block:: console
$ cat <<EOF > ~/.zephyrrc
- export ZEPHYR_SDK_INSTALL_DIR=/Volumes/CrossToolNG/x-tools
+ export XTOOLS_TOOLCHAIN_PATH=/Volumes/CrossToolNG/x-tools
export ZEPHYR_GCC_VARIANT=xtools
EOF