1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Dominik Riebeling 2011-06-12 11:40:20 +00:00
parent a3ed2c1552
commit 1d1fa41b20

13
tools/configure vendored
View file

@ -3198,13 +3198,13 @@ fi
# this # this
case $modelname in case $modelname in
iriverifp7xx) iriverifp7xx)
gdbstub="(G)DB stub, " gdbstub=", (G)DB stub"
;; ;;
sansae200r|sansae200) sansae200r|sansae200)
gdbstub="(I)nstaller, " gdbstub=", (I)nstaller"
;; ;;
sansac200) sansac200)
gdbstub="(E)raser, " gdbstub=", (E)raser"
;; ;;
*) *)
;; ;;
@ -3212,7 +3212,7 @@ esac
if [ "$ARG_TYPE" ]; then if [ "$ARG_TYPE" ]; then
btype=$ARG_TYPE btype=$ARG_TYPE
else else
echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, (D)atabase tool, $gdbstub(M)anual: (Defaults to N)" echo "Build (N)ormal, (A)dvanced, (S)imulator, (B)ootloader, (C)heckWPS, (D)atabase tool$gdbstub: (Defaults to N)"
btype=`input`; btype=`input`;
fi fi
@ -3292,11 +3292,6 @@ fi
esac esac
echo "GDB stub build selected" echo "GDB stub build selected"
;; ;;
[Mm])
toolset='';
apps="manual"
echo "Manual build selected"
;;
[Cc]) [Cc])
uname=`uname` uname=`uname`
simcc "checkwps" simcc "checkwps"