diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-23 12:48:04 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-23 12:48:04 +0000 |
| commit | f8a59f27f83ca172317a9b6061cdb514cdc35312 (patch) | |
| tree | 79e69089c4f41840d9b08a00a6af4e07cd7ea1f2 | |
| parent | e2511dad8fbe14f477742691d420163f6a121691 (diff) | |
| download | rockbox-f8a59f27f83ca172317a9b6061cdb514cdc35312.zip rockbox-f8a59f27f83ca172317a9b6061cdb514cdc35312.tar.gz rockbox-f8a59f27f83ca172317a9b6061cdb514cdc35312.tar.bz2 rockbox-f8a59f27f83ca172317a9b6061cdb514cdc35312.tar.xz | |
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
| -rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 5f08c65..b97e14a 100755 --- a/tools/configure +++ b/tools/configure @@ -112,7 +112,7 @@ fi appsfile="credits.c" # a file to check for in the apps root dir -for dir in apps $firmdir/apps $firmdir/../apps . .. ../apps ../../apps; do +for dir in apps . .. ../apps ../../apps $firmdir/apps $firmdir/../apps; do if [ -f $dir/$appsfile ]; then appsdir=$dir break |