aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAmir Abrams <AmirAbrams@users.noreply.github.com>2016-09-21 22:10:59 -0500
committeramirabrams <amirabrams@mail.com>2016-09-22 22:35:13 -0500
commit3f58a283ee108595cf3cc29aee9a4db2c1fcecd3 (patch)
tree75a494c4eb6dcf96aaf44e683d259748af6aedd5 /doc
parentcf5ebaa921a939cc3a81948a559c1f1ab53d68b6 (diff)
downloadbitcoin-3f58a283ee108595cf3cc29aee9a4db2c1fcecd3.tar.xz
[Doc] Add missing autogen to example builds
Diffstat (limited to 'doc')
-rw-r--r--doc/build-windows.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/build-windows.md b/doc/build-windows.md
index 129774491b..ec5f26c88b 100644
--- a/doc/build-windows.md
+++ b/doc/build-windows.md
@@ -27,6 +27,7 @@ To build executables for Windows 32-bit:
cd depends
make HOST=i686-w64-mingw32 -j4
cd ..
+ ./autogen.sh # not required when building from tarball
./configure --prefix=`pwd`/depends/i686-w64-mingw32
make
@@ -35,6 +36,7 @@ To build executables for Windows 64-bit:
cd depends
make HOST=x86_64-w64-mingw32 -j4
cd ..
+ ./autogen.sh # not required when building from tarball
./configure --prefix=`pwd`/depends/x86_64-w64-mingw32
make