diff options
| author | Tobias Diedrich <ranma+coreboot@tdiedrich.de> | 2010-06-26 21:55:09 +0000 |
|---|---|---|
| committer | Tobias Diedrich <ranma+coreboot@tdiedrich.de> | 2010-06-26 21:55:09 +0000 |
| commit | ac40959c48ced2c2dee30d3977e1671ceb941371 (patch) | |
| tree | 9f13097363e2cbccb0a20979d933e0e2bea2960b | |
| parent | 7db309cad3d7fe096d2631a05c1ed8c79e24fd6e (diff) | |
| download | rockbox-ac40959c48ced2c2dee30d3977e1671ceb941371.zip rockbox-ac40959c48ced2c2dee30d3977e1671ceb941371.tar.gz rockbox-ac40959c48ced2c2dee30d3977e1671ceb941371.tar.bz2 rockbox-ac40959c48ced2c2dee30d3977e1671ceb941371.tar.xz | |
Swap ccache and
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27147 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/configure b/tools/configure index 14685fd..09f2f23 100755 --- a/tools/configure +++ b/tools/configure @@ -2950,15 +2950,15 @@ DLLTOOL=`findtool ${DLLTOOL} --lit` DLLWRAP=`findtool ${DLLWRAP} --lit` RANLIB=`findtool ${RANLIB} --lit` +if test -n "$ccache"; then + CC="$ccache $CC" +fi + if test "$ARG_ARM_THUMB" = "1"; then extradefines="$extradefines -DUSE_THUMB" CC="$toolsdir/thumb-cc.py $CC" fi -if test -n "$ccache"; then - CC="$ccache $CC" -fi - if test "X$endian" = "Xbig"; then defendian="ROCKBOX_BIG_ENDIAN" else |