Browse Source

quick patch for bash_functions

Nate Brady 8 years ago
parent
commit
99521f7ef2
1 changed files with 3 additions and 1 deletions
  1. 3 1
      toolset/setup/linux/bash_functions.sh

+ 3 - 1
toolset/setup/linux/bash_functions.sh

@@ -1,5 +1,7 @@
 #!/bin/bash
 #!/bin/bash
 
 
+export DEBIAN_FRONTEND=noninteractive
+
 # If you are running a large number of installs back to back 
 # If you are running a large number of installs back to back 
 # (e.g. for FwBm development), then setting this variable 
 # (e.g. for FwBm development), then setting this variable 
 # will cause apt-get and wget to use your proxy server. If 
 # will cause apt-get and wget to use your proxy server. If 
@@ -121,7 +123,7 @@ fw_depends() {
       . $installation_file
       . $installation_file
     else
     else
       echo WARN: No installer found for $depend, attempting to install with 'apt-get'...
       echo WARN: No installer found for $depend, attempting to install with 'apt-get'...
-      sudo apt-get install -o Dpkg::Options::="--force-confold" -o Dpkg::Options::="--force-confdef" --force-yes ${depend}
+      sudo apt-get install -qqy -o Dpkg::Options::="--force-confold" -o Dpkg::Options::="--force-confdef" ${depend}
       # Return whence you came.
       # Return whence you came.
       popd
       popd
       continue
       continue