Browse Source

added quiet flags to make

Nate Brady 9 years ago
parent
commit
585d60b6c5

+ 1 - 1
toolset/setup/linux/systools/luarocks.sh

@@ -15,7 +15,7 @@ fw_untar luarocks-$LUAROCKS_VERSION.tar.gz
 
 cd $LUAROCKS
 ./configure --prefix=$LUA_HOME --with-lua=$LUA_HOME
-make bootstrap
+make --quiet bootstrap
 
 echo "" > $IROOT/luarocks.installed
 

+ 2 - 2
toolset/setup/linux/webservers/openresty.sh

@@ -16,8 +16,8 @@ fw_untar ngx_openresty-$OPENRESTY_VERSION.tar.gz
 
 cd ngx_openresty-$OPENRESTY_VERSION
 ./configure --with-luajit-xcflags=-DLUAJIT_NUMMODE=2 --with-http_postgres_module --prefix=$OPENRESTY_HOME -j4
-make -j4
-make install
+make -j4 --quiet
+make --quiet install
 
 echo "export OPENRESTY_HOME=${OPENRESTY_HOME}" > $IROOT/openresty.installed
 echo -e "export PATH=\$OPENRESTY_HOME/nginx/sbin:\$PATH" >> $IROOT/openresty.installed