summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-06-20 20:51:40 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-06-20 21:00:48 -0400
commit80cd79992540f33479f272cd4024d97e554b4220 (patch)
treed90eec2abff6bf3c36785aa58433f1cff59b8de7 /tools/configure
parentf58c15440f977b0c49145d8bc8226679b5f888dd (diff)
downloadrockbox-80cd79992540f33479f272cd4024d97e554b4220.tar.gz
rockbox-80cd79992540f33479f272cd4024d97e554b4220.zip
voice: If $POOL is not set, use <build-dir>/voice-pool by default
It will _vastly_ speed up repeated voice builds. The voice pool directory will not be erased by a 'make clean' Change-Id: Ice58d5c5355abfa5a385dfca749f8063e2ee8622
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 2579a38933..43f02f5643 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1078,6 +1078,9 @@ Win(6)4 crosscompile, (T)est plugins, (O)mit plugins, S(m)all C lib, Logf to Ser
1078 for thislang in `echo $voicelanguage | sed 's/,/ /g'`; do 1078 for thislang in `echo $voicelanguage | sed 's/,/ /g'`; do
1079 voiceconfig "$thislang" 1079 voiceconfig "$thislang"
1080 done 1080 done
1081 if [ -z "$POOL" ] ; then
1082 echo " \$POOL is not set, will use <builddir>/voice-pool by default"
1083 fi
1081 fi 1084 fi
1082 if [ "yes" = "$use_debug" ]; then 1085 if [ "yes" = "$use_debug" ]; then
1083 debug="-DDEBUG" 1086 debug="-DDEBUG"