scripts/build/arch/avr32.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Mon Jan 28 21:53:18 2013 +0100 (2013-01-28)
changeset 3176 20f2459b97bf
parent 1371 802c132f1f71
permissions -rw-r--r--
scripts: fix finishing the toolchain when download/extract-only is set

In case we only download or extract the sources, do not fail while
finishing the toolchain: the test-suite directory may not exist, so
we can't chmod it.

Also, use safer constructs that won't trigger the 'set -e' in case of
failure (eg.: "[ ... ] && ..." is not safe in case the test fails).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # Compute AVR32-specific values
     2 
     3 CT_DoArchTupleValues() {
     4     # gcc ./configure flags
     5     CT_ARCH_WITH_ARCH=
     6     CT_ARCH_WITH_ABI=
     7     CT_ARCH_WITH_CPU=
     8     CT_ARCH_WITH_TUNE=
     9     CT_ARCH_WITH_FPU=
    10     CT_ARCH_WITH_FLOAT=
    11     CT_TARGET_SYS=none
    12 
    13 }