Browse Source

Quiet down apt-get a little

Alex Schneider 10 years ago
parent
commit
58cbf4c96d
2 changed files with 3 additions and 3 deletions
  1. 1 1
      toolset/setup/linux/languages/mono.sh
  2. 2 2
      toolset/setup/linux/prerequisites.sh

+ 1 - 1
toolset/setup/linux/languages/mono.sh

@@ -10,7 +10,7 @@ RETCODE=$(fw_exists mono.installed)
   sudo $IROOT/mono-3.6.0-install/bin/mozroots --import --sync;
   return 0; }
 
-sudo apt-get install -y build-essential \
+sudo apt-get install -qqy build-essential \
              autoconf \
              automake \
              libtool \

+ 2 - 2
toolset/setup/linux/prerequisites.sh

@@ -18,7 +18,7 @@ sudo apt-get -y update
 sudo apt-get -y upgrade -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"
 
 # WARNING: DONT PUT A SPACE AFTER ANY BACKSLASH OR APT WILL BREAK
-sudo apt-get -y install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \
+sudo apt-get -qqy install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \
   cmake build-essential automake    `# Needed for building code` \
   curl wget unzip                   `# Common tools` \
   software-properties-common        `# Needed for add-apt-repository` \
@@ -43,7 +43,7 @@ sudo apt-get -y install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::=
 # Install gcc-4.8
 sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
 sudo apt-get -y update
-sudo apt-get install -y gcc-4.8 g++-4.8
+sudo apt-get install -qqy gcc-4.8 g++-4.8
 
 # Stop permanently overwriting people's files just for 
 # trying out our software!