diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2011-08-13 20:07:01 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2011-08-13 20:07:01 +0000 |
| commit | e1d33c07c61cd45b3a96ea687056bf8a0646160d (patch) | |
| tree | 0405522ff8c973245292f2ab8d85ec3de18188f4 | |
| parent | 2a2d22866c01e86f865b091d8182e67433433a27 (diff) | |
| download | rockbox-e1d33c07c61cd45b3a96ea687056bf8a0646160d.zip rockbox-e1d33c07c61cd45b3a96ea687056bf8a0646160d.tar.gz rockbox-e1d33c07c61cd45b3a96ea687056bf8a0646160d.tar.bz2 rockbox-e1d33c07c61cd45b3a96ea687056bf8a0646160d.tar.xz | |
configure: remove redundant ENC_CMD
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30288 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/configure b/tools/configure index 3a4e6c4..b812867 100755 --- a/tools/configure +++ b/tools/configure @@ -988,12 +988,10 @@ voiceconfig () { if [ "$swcodec" = "yes" ]; then ENCODER="rbspeexenc" - ENC_CMD="rbspeexenc" ENC_OPTS="-q 4 -c 10" else if [ -n "`findtool lame`" ]; then ENCODER="lame" - ENC_CMD="lame" ENC_OPTS="--resample 12 -t -m m -h -V 9.999 -S -B 64 --vbr-new" else echo "You need LAME in the system path to build voice files for" @@ -3700,7 +3698,7 @@ export MANUALDEV=${manualdev} export TTS_OPTS=${TTS_OPTS} export TTS_ENGINE=${TTS_ENGINE} export ENC_OPTS=${ENC_OPTS} -export ENCODER=${ENC_CMD} +export ENCODER=${ENCODER} export USE_ELF=${USE_ELF} export RBDIR=${rbdir} export ROCKBOX_SHARE_PATH=${sharedir} |