mirror of
https://github.com/transmission/transmission
synced 2025-01-03 13:35:36 +00:00
make the build quieter
This commit is contained in:
parent
c8d88af6f2
commit
0db6daab11
2 changed files with 5 additions and 3 deletions
6
README
6
README
|
@ -22,7 +22,7 @@ Building a Transmission release from the command line:
|
|||
|
||||
$ tar xvfz Transmission-80.tar.gz
|
||||
$ cd Transmission-0.80
|
||||
$ ./configure && make
|
||||
$ ./configure -q && make -s
|
||||
$ su (if necessary for the next line)
|
||||
$ make install
|
||||
|
||||
|
@ -31,5 +31,7 @@ Building Transmission from SVN:
|
|||
$ svn co svn://svn.m0k.org/Transmission/trunk Transmission
|
||||
$ cd Transmission
|
||||
$ ./autogen.sh
|
||||
$ ./configure && make
|
||||
$ ./configure -q && make -s
|
||||
|
||||
If you miss the silence of
|
||||
|
||||
|
|
|
@ -208,7 +208,7 @@ AC_CONFIG_FILES([Makefile
|
|||
wx/Makefile
|
||||
wx/images/Makefile])
|
||||
|
||||
ac_configure_args="$ac_configure_args --enable-static --disable-shared"
|
||||
ac_configure_args="$ac_configure_args --enable-static --disable-shared -q"
|
||||
AC_OUTPUT
|
||||
|
||||
echo "
|
||||
|
|
Loading…
Reference in a new issue