From 5838b72662a80078837671697f768187448cbb9d Mon Sep 17 00:00:00 2001 From: turnersr Date: Mon, 25 Apr 2016 02:17:38 +0900 Subject: [PATCH] Made apt-get options consistent apt-get was missing -qq -y options. These two flags are used in the other install scripts and are very convenient. --- tracers/pin_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracers/pin_build.sh b/tracers/pin_build.sh index f463c223..023b98ef 100755 --- a/tracers/pin_build.sh +++ b/tracers/pin_build.sh @@ -12,7 +12,7 @@ Linux) # pin build deps, good? if which apt-get; then echo "apt-getting pin tool building deps" - sudo apt-get install gcc-multilib g++-multilib || echo "WARNING: apt-get failed" + sudo apt-get -qq -y install gcc-multilib g++-multilib || echo "WARNING: apt-get failed" else echo "WARNING: you don't have apt-get, you are required to fetch pin tool building deps (e.g. 32 bit libs) on your own" fi