Make 'make reconf' remember the use of --ccache and --no-ccache. Only works after the next configure run.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26252 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
13f159df57
commit
6688988ec4
1 changed files with 3 additions and 1 deletions
4
tools/configure
vendored
4
tools/configure
vendored
|
@ -3004,8 +3004,10 @@ if test "$apps" = "apps"; then
|
|||
fi
|
||||
|
||||
#### Fix the cmdline ###
|
||||
if test -n "$ccache"; then
|
||||
if [ "$ARG_CCACHE" = "1" ]; then
|
||||
cmdline="--ccache "
|
||||
elif [ "$ARG_CCACHE" = "0" ]; then
|
||||
cmdline="--no-ccache "
|
||||
fi
|
||||
if [ "$ARG_ARM_EABI" = "1" ]; then
|
||||
cmdline="$cmdline--eabi "
|
||||
|
|
Loading…
Reference in a new issue