summaryrefslogtreecommitdiff
path: root/nuttx/tools
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-29 12:52:15 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-12-29 12:52:15 +0000
commitfb7d51e41ba6acd21e511a25f1a2e5102d3d8095 (patch)
tree39a24c0f788e5439a598b20bce102bcf471d44f2 /nuttx/tools
parentcca080df11ff398f86eed1c0b83fc572e5d69bb8 (diff)
downloadpx4-nuttx-fb7d51e41ba6acd21e511a25f1a2e5102d3d8095.tar.gz
px4-nuttx-fb7d51e41ba6acd21e511a25f1a2e5102d3d8095.tar.bz2
px4-nuttx-fb7d51e41ba6acd21e511a25f1a2e5102d3d8095.zip
Correct last set of changes to configuration logic
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4237 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools')
-rwxr-xr-xnuttx/tools/configure.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/tools/configure.sh b/nuttx/tools/configure.sh
index 84a9acb43..3aaed0681 100755
--- a/nuttx/tools/configure.sh
+++ b/nuttx/tools/configure.sh
@@ -156,7 +156,7 @@ if [ ! -z "${appdir}" ]; then
if [ ! -r "${configpath}/appconfig" ]; then
echo "NOTE: No readable appconfig file found in ${configpath}"
else
- install -C "${configpath}/appconfig" "${TOPDIR}/${appdir}/.configX" || \
+ install -C "${configpath}/appconfig" "${TOPDIR}/${appdir}/.config" || \
{ echo "Failed to copy ${configpath}/appconfig" ; exit 10 ; }
echo "" >> "${TOPDIR}/.configX"
@@ -166,7 +166,7 @@ if [ ! -z "${appdir}" ]; then
fi
fi
-# install the final .configX only if it differs from the existing
+# install the final .configX only if it differs from any existing
# .config file.
install -C "${TOPDIR}/.configX" "${TOPDIR}/.config"