summaryrefslogtreecommitdiff
path: root/nuttx/tools/configure.sh
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-20 22:07:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-20 22:07:56 +0000
commit60051cba0cf424e01ef2eda09816ee8945867b6d (patch)
tree506ffc7c368b1b0756a12099b0f2401e56ea4496 /nuttx/tools/configure.sh
parentf6f8f750c7a25d123dc6f20902b38bcda1c95963 (diff)
downloadpx4-nuttx-60051cba0cf424e01ef2eda09816ee8945867b6d.tar.gz
px4-nuttx-60051cba0cf424e01ef2eda09816ee8945867b6d.tar.bz2
px4-nuttx-60051cba0cf424e01ef2eda09816ee8945867b6d.zip
More build fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3407 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/tools/configure.sh')
-rwxr-xr-xnuttx/tools/configure.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/nuttx/tools/configure.sh b/nuttx/tools/configure.sh
index ad82b457e..8e56c2a0e 100755
--- a/nuttx/tools/configure.sh
+++ b/nuttx/tools/configure.sh
@@ -118,8 +118,25 @@ fi
# Check for the apps/ dir in the usual place if appdir was not provided
if [ -z "${appdir}" ]; then
+
+ # Check for a version file
+
+ unset CONFIG_NUTTX_VERSION
+ if [ -x "${TOPDIR}/.version" ]; then
+ source "${TOPDIR}/.version"
+ fi
+
+ # Check for an unversioned apps/ directory
+
if [ -d "${TOPDIR}/../apps" ]; then
appdir="../apps"
+
+ else
+ # Check for a versioned apps/ directory
+
+ if [ -d "${TOPDIR}/../apps-${CONFIG_NUTTX_VERSION}" ]; then
+ appdir="../apps-${CONFIG_NUTTX_VERSION}"
+ fi
fi
fi