Browse Source

Reduce verbosity of python and mono

Alex Schneider 10 years ago
parent
commit
d390f9a332

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

@@ -24,8 +24,8 @@ fw_untar mono-3.6.0.tar.bz2
 cd mono-3.6.0
 ./autogen.sh --prefix=$IROOT/mono-3.6.0-install
 # make -j4 EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/basic.exe
-make -j4
-make install
+make -j4 | grep -i "error"
+make install | grep -i "error"
 
 echo "Installing RootCAs from Mozilla..."; 
 mozroots --import --sync;
@@ -33,4 +33,4 @@ mozroots --import --sync;
 echo "ROOT: Installing RootCAs from Mozilla..."; 
 sudo $IROOT/mono-3.6.0-install/bin/mozroots --import --sync;
 
-touch $IROOT/mono.installed
+touch $IROOT/mono.installed

+ 2 - 2
toolset/setup/linux/languages/python2.sh

@@ -8,8 +8,8 @@ fw_untar Python-2.7.8.tgz
 pre=$(pwd)
 cd Python-2.7.8
 ./configure --prefix=${pre}/py2 --disable-shared --quiet
-make -j4 --quiet
-make install --quiet
+make -j4 --quiet | grep -i "error"
+make install --quiet | grep -i "error"
 cd ..
 
 if [ ! -f "get-pip.py" ]; then

+ 2 - 2
toolset/setup/linux/languages/python3.sh

@@ -8,8 +8,8 @@ fw_untar Python-3.4.1.tar.xz
 pre=$(pwd)
 cd Python-3.4.1
 ./configure --prefix=${pre}/py3 --disable-shared --quiet
-make -j4 --quiet
-make install --quiet
+make -j4 --quiet | grep -i "error"
+make install --quiet | grep -i "error"
 cd ..
 
 if [ ! -f "get-pip.py" ]; then