diff options
author | Nikita Popov <nikic@php.net> | 2012-08-26 17:46:01 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2012-08-26 17:46:01 +0200 |
commit | 48f40969179d3db8dade1e64a273a26b8aa2e2a1 (patch) | |
tree | 2c8824ce669df143c2d157c59e827d411ca7d8ab /travis | |
parent | e3ef84c59bf669a7dfc717af26ed1872bab397c9 (diff) | |
download | php-git-48f40969179d3db8dade1e64a273a26b8aa2e2a1.tar.gz |
Travis: Silence configure and make
The large compile logs are hurting the poor browsers.
This also drops two bogus configure options.
Diffstat (limited to 'travis')
-rwxr-xr-x | travis/compile.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/travis/compile.sh b/travis/compile.sh index a0fc167a15..b48bfe8e24 100755 --- a/travis/compile.sh +++ b/travis/compile.sh @@ -1,6 +1,6 @@ #!/bin/bash ./buildconf -./configure \ +./configure --quiet \ --with-pdo-mysql \ --with-mysql \ --with-mysqli \ @@ -33,7 +33,5 @@ --with-gettext \ --enable-sockets \ --with-bz2 \ ---enable-bcmath \ ---enable-fastcgi \ ---with-mime-magic -make
\ No newline at end of file +--enable-bcmath +make --quiet |