summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-23 12:48:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-23 12:48:04 +0000
commitf8a59f27f83ca172317a9b6061cdb514cdc35312 (patch)
tree79e69089c4f41840d9b08a00a6af4e07cd7ea1f2 /tools/configure
parente2511dad8fbe14f477742691d420163f6a121691 (diff)
downloadrockbox-f8a59f27f83ca172317a9b6061cdb514cdc35312.tar.gz
rockbox-f8a59f27f83ca172317a9b6061cdb514cdc35312.zip
change the order we check for the apps dir to more often get the shortest
path git-svn-id: svn://svn.rockbox.org/rockbox/trunk@670 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 5f08c658f6..b97e14a4c5 100755
--- a/tools/configure
+++ b/tools/configure
@@ -112,7 +112,7 @@ fi
112 112
113appsfile="credits.c" # a file to check for in the apps root dir 113appsfile="credits.c" # a file to check for in the apps root dir
114 114
115for dir in apps $firmdir/apps $firmdir/../apps . .. ../apps ../../apps; do 115for dir in apps . .. ../apps ../../apps $firmdir/apps $firmdir/../apps; do
116 if [ -f $dir/$appsfile ]; then 116 if [ -f $dir/$appsfile ]; then
117 appsdir=$dir 117 appsdir=$dir
118 break 118 break