Skip to content

Commit 05a88dc

Browse files
committed
Make archives extraction silent
1 parent 9f8c0dc commit 05a88dc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

avr-libc.build.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if [[ $OS == "Msys" || $OS == "Cygwin" ]] ; then
4141
else
4242
EXCLUDE=""
4343
fi
44-
tar xfv avr-libc.tar.bz2 $EXCLUDE
44+
tar xf avr-libc.tar.bz2 $EXCLUDE
4545
mv libc/avr-libc .
4646
rmdir libc
4747

binutils.build.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if [[ ! -f avr-binutils.tar.bz2 ]] ;
3737
then
3838
wget $AVR_SOURCES/avr-binutils.tar.bz2
3939
fi
40-
tar xfv avr-binutils.tar.bz2
40+
tar xf avr-binutils.tar.bz2
4141

4242
cd binutils
4343
#for p in ../binutils-patches/*.patch; do echo Applying $p; patch -p1 < $p; done

gcc.build.bash

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,28 +34,28 @@ then
3434
wget ${GMP_SOURCE}
3535
fi
3636

37-
tar xfv gmp-${GMP_VERSION}.tar.bz2
37+
tar xf gmp-${GMP_VERSION}.tar.bz2
3838

3939
if [[ ! -f mpfr-${MPFR_VERSION}.tar.bz2 ]] ;
4040
then
4141
wget ${MPFR_SOURCE}
4242
fi
4343

44-
tar xfv mpfr-${MPFR_VERSION}.tar.bz2
44+
tar xf mpfr-${MPFR_VERSION}.tar.bz2
4545

4646
if [[ ! -f mpc-${MPC_VERSION}.tar.gz ]] ;
4747
then
4848
wget ${MPC_SOURCE}
4949
fi
5050

51-
tar xfv mpc-${MPC_VERSION}.tar.gz
51+
tar xf mpc-${MPC_VERSION}.tar.gz
5252

5353
if [[ ! -f gcc-7.3.0.tar.xz ]] ;
5454
then
5555
wget https://ftp.gnu.org/gnu/gcc/gcc-7.3.0/gcc-7.3.0.tar.xz
5656
fi
5757

58-
tar xfv gcc-7.3.0.tar.xz
58+
tar xf gcc-7.3.0.tar.xz
5959
mv gcc-7.3.0 gcc
6060

6161
# Apply the right patchset

gdb.build.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ then
3838
wget $AVR_SOURCES/avr-gdb.tar.bz2
3939
fi
4040

41-
tar xfv avr-gdb.tar.bz2
41+
tar xf avr-gdb.tar.bz2
4242

4343
cd gdb
4444
for p in ../avr-gdb-patches/*.patch

0 commit comments

Comments
 (0)