From 50106f0d2a498a5f87cbff2c7949eae6cc93549e Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 9 May 2018 17:04:00 -0600 Subject: [PATCH] Fix a couple more reference to cd'ing to tools before executing configure.sh. --- Documentation/NuttxPortingGuide.html | 9 +++------ Makefile.unix | 6 ++++-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index cb28103bef..d015cbd57f 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -1403,16 +1403,14 @@ tools/ accomplish the same configuration:

There is an alternative Windows batch file, configure.bat, that can be used instead of configure.sh in the windows native environment like:

See tools/README.txt for more information about these scripts. @@ -1423,8 +1421,7 @@ tools/ then you should also specify the location of the application directory on the command line like:

diff --git a/Makefile.unix b/Makefile.unix index 504e0dd556..934f2ad4d8 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -369,8 +369,10 @@ clean_context: check_context: $(Q) if [ ! -e ${TOPDIR}/.config -o ! -e ${TOPDIR}/Make.defs ]; then \ - echo "" ; echo "Nuttx has not been configured:" ; \ - echo " cd tools; ./configure.sh " ; echo "" ; \ + echo "" ; \ + echo "Nuttx has not been configured:" ; \ + echo " tools/configure.sh " ; \ + echo "" ; \ exit 1 ; \ fi