~midori/midori/trunk

« back to all changes in this revision

Viewing changes to win32/makedist/win32-release

  • Committer: Paweł Forysiuk
  • Date: 2013-10-31 19:53:53 UTC
  • mto: This revision was merged to the branch mainline in revision 6458.
  • Revision ID: tuxator@o2.pl-20131031195353-di55ju8t9eogqxm9
Use less verbose makefiles

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
rm -fr _mingw32
22
22
mkdir _mingw32 && cd _mingw32
23
 
mingw32-cmake -DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX $SRCDIR
 
23
mingw32-cmake -DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX -DCMAKE_VERBOSE_MAKEFILE=0 $SRCDIR
24
24
make
25
25
sudo make install || exit
26
26
 
46
46
 
47
47
    rm -fr _mingw64
48
48
    mkdir _mingw64 && cd _mingw64
49
 
    mingw64-cmake -DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX $SRCDIR
 
49
    mingw64-cmake -DUSE_ZEITGEIST=0 -DUSE_GTK3=1 -DCMAKE_INSTALL_PREFIX=$MINGW_PREFIX -DCMAKE_VERBOSE_MAKEFILE=0 $SRCDIR
50
50
    make
51
51
    sudo make install || exit
52
52