Browse Source

Log installation files

Alex Schneider 10 years ago
parent
commit
7f0a8201d5

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

@@ -25,8 +25,8 @@ 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
 echo -n "Installing Mono"
-make -j4 2>&1 | awk '{ if (NR%100 == 0) printf "."}'
-make install 2>&1 | awk '{ if (NR%100 == 0) printf "."}'
+make -j4 2>&1 | tee $IROOT/mono-install.log | awk '{ if (NR%100 == 0) printf "."}'
+make install 2>&1 | tee -a $IROOT/mono-install.log | awk '{ if (NR%100 == 0) printf "."}'
 
 echo "Installing RootCAs from Mozilla..."; 
 mozroots --import --sync;

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

@@ -9,8 +9,8 @@ pre=$(pwd)
 cd Python-2.7.8
 ./configure --prefix=${pre}/py2 --disable-shared --quiet
 echo -n "Installing Python 2"
-make -j4 --quiet 2>&1 | awk '{ if (NR%100 == 0) printf "."}'
-make install --quiet 2>&1 | awk '{ if (NR%100 == 0) printf "."}'
+make -j4 --quiet 2>&1 | tee $IROOT/python-install.log | awk '{ if (NR%100 == 0) printf "."}'
+make install --quiet 2>&1 | tee -a $IROOT/python-install.log | awk '{ if (NR%100 == 0) printf "."}'
 cd ..
 
 if [ ! -f "get-pip.py" ]; then

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

@@ -9,8 +9,8 @@ pre=$(pwd)
 cd Python-3.4.1
 ./configure --prefix=${pre}/py3 --disable-shared --quiet
 echo -n "Installing Python 3"
-make -j4 --quiet 2>&1 | awk '{ if (NR%100 == 0) printf "."}'
-make install --quiet 2>&1 | awk '{ if (NR%100 == 0) printf "."}'
+make -j4 --quiet 2>&1 | tee $IROOT/python3-install.log | awk '{ if (NR%100 == 0) printf "."}'
+make install --quiet 2>&1 | tee -a $IROOT/python3-install.log | awk '{ if (NR%100 == 0) printf "."}'
 cd ..
 
 if [ ! -f "get-pip.py" ]; then