diff --git a/doc/gccgo_install.html b/doc/gccgo_install.html
index 159fab7bb5b..38a30e9c62b 100644
--- a/doc/gccgo_install.html
+++ b/doc/gccgo_install.html
@@ -58,7 +58,7 @@ use a small discontiguous stack for goroutines. This permits programs
to run many more goroutines, since each goroutine can use a relatively
small stack. Doing this requires using a development version of
the gold
linker. The easiest way to do this is to build
-the GNU binutils, using --enable-gold
when you run
+the GNU binutils, using --enable-gold=default
when you run
the configure
script, and to
use --with-ld=GOLD_BINARY
when you
configure gccgo
. A typical sequence would look like
@@ -72,7 +72,7 @@ cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src login
cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src co binutils
mkdir binutils-objdir
cd binutils-objdir
-../src/configure --enable-gold --prefix=/opt/gold
+../src/configure --enable-gold=default --prefix=/opt/gold
make
make install