summaryrefslogtreecommitdiff
path: root/nuttx/configs/ez80f910200kitg/ostest/setenv.sh
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-26 15:06:50 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-26 15:06:50 +0000
commit582b39047e192bf28c568fc53fcff168c8293841 (patch)
tree237ee27237a2933afa2e945fb703db576b867640 /nuttx/configs/ez80f910200kitg/ostest/setenv.sh
parenta9de389d80485f8f305c7161e1312ef9a450892a (diff)
downloadpx4-nuttx-582b39047e192bf28c568fc53fcff168c8293841.tar.gz
px4-nuttx-582b39047e192bf28c568fc53fcff168c8293841.tar.bz2
px4-nuttx-582b39047e192bf28c568fc53fcff168c8293841.zip
Misc build fixes, some from Mike some for ez80 native build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5389 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/ez80f910200kitg/ostest/setenv.sh')
-rwxr-xr-xnuttx/configs/ez80f910200kitg/ostest/setenv.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/nuttx/configs/ez80f910200kitg/ostest/setenv.sh b/nuttx/configs/ez80f910200kitg/ostest/setenv.sh
index ce3ea8b53..42003ccb6 100755
--- a/nuttx/configs/ez80f910200kitg/ostest/setenv.sh
+++ b/nuttx/configs/ez80f910200kitg/ostest/setenv.sh
@@ -54,7 +54,10 @@ fi
TOOLCHAIN_BIN="/cygdrive/c/Program Files (x86)/ZiLOG/ZDSII_eZ80Acclaim!_5.1.1\bin"
#
-# Add the path to the toolchain to the PATH varialble
+# Add the path to the toolchain to the PATH varialble. NOTE that /bin and /usr/bin
+# preceded the toolchain bin directory. This is because the ZDSII bin directory
+# includes binaries like make.exe that will interfere with the normal build process
+# if we do not give priority to the versions at /bin and /usr/bin.
#
-export PATH="${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
+export PATH="/bin:/usr/bin:${TOOLCHAIN_BIN}:/sbin:/usr/sbin:${PATH_ORIG}"
echo "PATH : ${PATH}"