diff options
author | Jens Arnold <amiconn@rockbox.org> | 2009-12-25 18:33:47 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2009-12-25 18:33:47 +0000 |
commit | b5ca489be9a56ac798280d31ae2b99ada1f25d98 (patch) | |
tree | a67aca4e50f01d668a180244ec1eeb43ad7ece45 | |
parent | b3bb0ca27da67dfb70a38eca713f41139a49e76f (diff) |
Properly append advanced build options so that 'make reconf' works without requests (one more manual reconfiguration required).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24114 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | tools/configure | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index dee6bbfe09..6dd5998be6 100755 --- a/tools/configure +++ b/tools/configure @@ -450,7 +450,9 @@ whichadvanced () { fi ;; esac - if [ ! "$interact" ]; then + if [ "$interact" ]; then + btype="$btype$option" + else atype=`echo "$atype" | cut -c 2-` [ "$atype" ] || cont=0 fi |