This website requires JavaScript.
Explore
Help
Register
Sign in
LBRYCommunity
/
lbrycrd
Watch
1
Star
0
Fork
You've already forked lbrycrd
0
Code
Issues
29
Pull requests
1
Projects
Releases
32
Packages
Wiki
Activity
8b0f608815
lbrycrd
/
autogen.sh
6 lines
82 B
Bash
Raw
Normal View
History
Unescape
Escape
autogen.sh: Add a /bin/sh shebang.
2013-11-28 02:21:40 +01:00
#!/bin/sh
autogen.sh: Use set -e to fail if any command fails In preparation for expanding autogen.sh.
2013-11-28 02:24:26 +01:00
set
-e
autogen.sh: Support running from outside the source directory Initial steps towards supporting out-of-tree builds.
2013-11-28 02:25:58 +01: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-28 02:29:00 +01:00
autoreconf --install --force
Reference in a new issue
Copy permalink