bootstrap
author Cody Schafer <dev@codyps.com>
Fri May 09 19:11:59 2014 -0700 (2014-05-09)
changeset 3311 e35fa03cd204
permissions -rwxr-xr-x
cc/gcc: avoid passing --enable-multilib

Some versions of gcc have a broken --enable-multilib flag. As multilib is the
default, only pass the --disable-multilib flag

Signed-off-by: Cody P Schafer <dev@codyps.com>
[yann.morin.1998@free.fr: make it an if-block; duplicate commit log as comment]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <5c970c1ceb22528fe28a.1399687923@localhost>
Patchwork-Id: 347585
     1 #!/bin/sh
     2 set -e
     3 
     4 printf "Running autoconf...\n"
     5 autoconf -Wall --force
     6 
     7 printf "Done. You may now run:\n    ./configure\n"