Browse Source

Minor fixes with installs and reduction of verbosity with python

Alex Schneider 10 years ago
parent
commit
515820a1b3

+ 1 - 1
frameworks/C/lwan/install.sh

@@ -10,7 +10,7 @@ RETCODE=$(fw_exists ${INSTALLED_FILE})
 
 
 # Lwan is only built during installation as a dependency sanity check.
 # Lwan is only built during installation as a dependency sanity check.
 sudo apt-get update && \
 sudo apt-get update && \
-	sudo apt-get install libjemalloc-dev libmysqlclient-dev libsqlite3-dev && \
+	sudo apt-get install -qqy libjemalloc-dev libmysqlclient-dev libsqlite3-dev && \
 	git clone git://github.com/lpereira/lwan.git && \
 	git clone git://github.com/lpereira/lwan.git && \
         cd lwan && \
         cd lwan && \
         git checkout ${REV} && \
         git checkout ${REV} && \

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

@@ -7,9 +7,9 @@ fw_get http://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgz
 fw_untar Python-2.7.8.tgz
 fw_untar Python-2.7.8.tgz
 pre=$(pwd)
 pre=$(pwd)
 cd Python-2.7.8
 cd Python-2.7.8
-./configure --prefix=${pre}/py2 --disable-shared
-make -j4
-make install
+./configure --prefix=${pre}/py2 --disable-shared --quiet
+make -j4 --quiet
+make install --quiet
 cd ..
 cd ..
 
 
 if [ ! -f "get-pip.py" ]; then
 if [ ! -f "get-pip.py" ]; then

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

@@ -7,9 +7,9 @@ fw_get http://www.python.org/ftp/python/3.4.1/Python-3.4.1.tar.xz
 fw_untar Python-3.4.1.tar.xz
 fw_untar Python-3.4.1.tar.xz
 pre=$(pwd)
 pre=$(pwd)
 cd Python-3.4.1
 cd Python-3.4.1
-./configure --prefix=${pre}/py3 --disable-shared
-make -j4
-make install
+./configure --prefix=${pre}/py3 --disable-shared --quiet
+make -j4 --quiet
+make install --quiet
 cd ..
 cd ..
 
 
 if [ ! -f "get-pip.py" ]; then
 if [ ! -f "get-pip.py" ]; then