This website requires JavaScript.
Explore
Help
Sign in
foster
/
bitcoin-bitcoin-core
Watch
0
Star
0
Fork
You've already forked bitcoin-bitcoin-core
0
mirror of
https://github.com/bitcoin/bitcoin.git
synced
2025-02-03 09:56:38 -05:00
Code
Issues
Activity
9a6497ed07
bitcoin-bitcoin-core
/
autogen.sh
6 lines
82 B
Bash
Raw
Normal View
History
Unescape
Escape
autogen.sh: Add a /bin/sh shebang.
2013-11-27 17:21:40 -08:00
#!/bin/sh
autogen.sh: Use set -e to fail if any command fails In preparation for expanding autogen.sh.
2013-11-27 17:24:26 -08:00
set
-e
autogen.sh: Support running from outside the source directory Initial steps towards supporting out-of-tree builds.
2013-11-27 17:25:58 -08:00
srcdir
=
"
$(
dirname
$0
)
"
cd
"
$srcdir
"
autogen.sh: Stop passing --verbose to autoreconf This quiets down the autotools build, making warnings much more visible.
2013-11-27 17:29:00 -08:00
autoreconf --install --force
Copy permalink