summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2011-06-12 11:40:20 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2011-06-12 11:40:20 +0000
commit1d1fa41b2089c5f94a092d60b2b0d37d4f06ffa1 (patch)
treed62b6788cc767a44db71b8e0349046282475b423
parenta3ed2c1552e87297a2276cdfa81ea23b046b0b21 (diff)
downloadrockbox-1d1fa41b2089c5f94a092d60b2b0d37d4f06ffa1.tar.gz
rockbox-1d1fa41b2089c5f94a092d60b2b0d37d4f06ffa1.zip
Remove Manual option from configure script.
Building the manual requires to use the manual make target, and it can be invoked from a normal build configuration. Having a separate configure option isn't necessary anymore. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29994 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure13
1 files changed, 4 insertions, 9 deletions
diff --git a/tools/configure b/tools/configure
index 473b7b4f54..caefce7ba3 100755
--- a/tools/configure
+++ b/tools/configure
@@ -3198,13 +3198,13 @@ fi
3198 # this 3198 # this
3199case $modelname in 3199case $modelname in
3200 iriverifp7xx) 3200 iriverifp7xx)
3201 gdbstub="(G)DB stub, " 3201 gdbstub=", (G)DB stub"
3202 ;; 3202 ;;
3203 sansae200r|sansae200) 3203 sansae200r|sansae200)
3204 gdbstub="(I)nstaller, " 3204 gdbstub=", (I)nstaller"
3205 ;; 3205 ;;
3206 sansac200) 3206 sansac200)
3207 gdbstub="(E)raser, " 3207 gdbstub=", (E)raser"
3208 ;; 3208 ;;
3209 *) 3209 *)
3210 ;; 3210 ;;
@@ -3212,7 +3212,7 @@ esac
3212if [ "$ARG_TYPE" ]; then 3212if [ "$ARG_TYPE" ]; then
3213 btype=$ARG_TYPE 3213 btype=$ARG_TYPE
3214else 3214else
3215 echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, (D)atabase tool, $gdbstub(M)anual: (Defaults to N)" 3215 echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, (D)atabase tool$gdbstub: (Defaults to N)"
3216 btype=`input`; 3216 btype=`input`;
3217fi 3217fi
3218 3218
@@ -3292,11 +3292,6 @@ fi
3292 esac 3292 esac
3293 echo "GDB stub build selected" 3293 echo "GDB stub build selected"
3294 ;; 3294 ;;
3295 [Mm])
3296 toolset='';
3297 apps="manual"
3298 echo "Manual build selected"
3299 ;;
3300 [Cc]) 3295 [Cc])
3301 uname=`uname` 3296 uname=`uname`
3302 simcc "checkwps" 3297 simcc "checkwps"