File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ if [[ $OS == "Msys" || $OS == "Cygwin" ]] ; then
41
41
else
42
42
EXCLUDE=" "
43
43
fi
44
- tar xfv avr-libc.tar.bz2 $EXCLUDE
44
+ tar xf avr-libc.tar.bz2 $EXCLUDE
45
45
mv libc/avr-libc .
46
46
rmdir libc
47
47
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ if [[ ! -f avr-binutils.tar.bz2 ]] ;
37
37
then
38
38
wget $AVR_SOURCES /avr-binutils.tar.bz2
39
39
fi
40
- tar xfv avr-binutils.tar.bz2
40
+ tar xf avr-binutils.tar.bz2
41
41
42
42
cd binutils
43
43
# for p in ../binutils-patches/*.patch; do echo Applying $p; patch -p1 < $p; done
Original file line number Diff line number Diff line change 34
34
wget ${GMP_SOURCE}
35
35
fi
36
36
37
- tar xfv gmp-${GMP_VERSION} .tar.bz2
37
+ tar xf gmp-${GMP_VERSION} .tar.bz2
38
38
39
39
if [[ ! -f mpfr-${MPFR_VERSION} .tar.bz2 ]] ;
40
40
then
41
41
wget ${MPFR_SOURCE}
42
42
fi
43
43
44
- tar xfv mpfr-${MPFR_VERSION} .tar.bz2
44
+ tar xf mpfr-${MPFR_VERSION} .tar.bz2
45
45
46
46
if [[ ! -f mpc-${MPC_VERSION} .tar.gz ]] ;
47
47
then
48
48
wget ${MPC_SOURCE}
49
49
fi
50
50
51
- tar xfv mpc-${MPC_VERSION} .tar.gz
51
+ tar xf mpc-${MPC_VERSION} .tar.gz
52
52
53
53
if [[ ! -f gcc-7.3.0.tar.xz ]] ;
54
54
then
55
55
wget https://ftp.gnu.org/gnu/gcc/gcc-7.3.0/gcc-7.3.0.tar.xz
56
56
fi
57
57
58
- tar xfv gcc-7.3.0.tar.xz
58
+ tar xf gcc-7.3.0.tar.xz
59
59
mv gcc-7.3.0 gcc
60
60
61
61
# Apply the right patchset
Original file line number Diff line number Diff line change 38
38
wget $AVR_SOURCES /avr-gdb.tar.bz2
39
39
fi
40
40
41
- tar xfv avr-gdb.tar.bz2
41
+ tar xf avr-gdb.tar.bz2
42
42
43
43
cd gdb
44
44
for p in ../avr-gdb-patches/* .patch
You can’t perform that action at this time.
0 commit comments