diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-23 09:18:14 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-23 09:18:14 +0000 |
| commit | 82e6a072986aceee573a57f30157556330d59d1e (patch) | |
| tree | 3e9c0cf9469eaeefd452fca122f7ff6b683a59ef | |
| parent | 3aacd2edf176d5f4f51d9e0ae4731e253c7f4961 (diff) | |
| download | rockbox-82e6a072986aceee573a57f30157556330d59d1e.zip rockbox-82e6a072986aceee573a57f30157556330d59d1e.tar.gz rockbox-82e6a072986aceee573a57f30157556330d59d1e.tar.bz2 rockbox-82e6a072986aceee573a57f30157556330d59d1e.tar.xz | |
try the directories in the current dir too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@657 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index 44f359b..d95f965 100755 --- a/tools/configure +++ b/tools/configure @@ -77,9 +77,10 @@ esac firmfile="start.s" # a file to check for in the firmware root dir -for dir in . .. ../firmware ../../firmware; do +for dir in firmware . .. ../firmware ../../firmware; do if [ -f $dir/$firmfile ]; then firmdir=$dir + break fi done @@ -96,9 +97,10 @@ fi appsfile="credits.c" # a file to check for in the apps root dir -for dir in $firmdir/apps $firmdir/../apps . .. ../apps ../../apps; do +for dir in apps $firmdir/apps $firmdir/../apps . .. ../apps ../../apps; do if [ -f $dir/$appsfile ]; then appsdir=$dir + break fi done |