summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-06 13:33:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-06 13:33:38 +0000
commite45a8f5f3cf1e9142b610ca62a845d5c7f964843 (patch)
treeeac8aa67b253d2ad1f7aeecbeec7eee1a58499d6
parent82078e4a59113557c61102b40716931acfc88f39 (diff)
downloadrockbox-e45a8f5f3cf1e9142b610ca62a845d5c7f964843.tar.gz
rockbox-e45a8f5f3cf1e9142b610ca62a845d5c7f964843.zip
works with traditional sh now (as tested on Solaris)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@901 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure20
1 files changed, 10 insertions, 10 deletions
diff --git a/tools/configure b/tools/configure
index a972274f5d..0464150d31 100755
--- a/tools/configure
+++ b/tools/configure
@@ -16,7 +16,7 @@ input() {
16 echo $response 16 echo $response
17} 17}
18 18
19simulator() { 19simul () {
20 ################################################################## 20 ##################################################################
21 # Figure out where the firmware code is! 21 # Figure out where the firmware code is!
22 # 22 #
@@ -69,14 +69,14 @@ clean:
69 69
70EOF 70EOF
71 71
72echo "Created Makefile" 72 echo "Created Makefile"
73 73
74if [ -d "archos" ]; then 74 if [ -d "archos" ]; then
75 echo "sub directory archos already present" 75 echo "sub directory archos already present"
76else 76 else
77 mkdir archos 77 mkdir archos
78 echo "created an archos subdirectory for simulating the hard disk" 78 echo "created an archos subdirectory for simulating the hard disk"
79fi 79 fi
80 80
81} 81}
82 82
@@ -175,9 +175,9 @@ if [ -z "$debug" ]; then
175 esac 175 esac
176fi 176fi
177 177
178if [ -n "$simulator" ]; then 178if [ "yes" = "$simulator" ]; then
179 # we deal with the simulator Makefile separately 179 # we deal with the simulator Makefile separately
180 simulator 180 simul
181 exit 181 exit
182fi 182fi
183 183