repo.or.cz
/
got-portable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
got: load editor with backout/cherrypick commit log messages
[got-portable.git]
/
autogen.sh
blob
0cc503bf70cc7f6f19895fa993236ff4c89f35f2
1
#!/bin/sh
2
3
if
[
"x$(uname)"
=
"xOpenBSD"
];
then
4
[
-z
"
$AUTOMAKE_VERSION
"
] &&
export
AUTOMAKE_VERSION
=
1.16
5
[
-z
"
$AUTOCONF_VERSION
"
] &&
export
AUTOCONF_VERSION
=
2.69
6
fi
7
8
9
die
()
10
{
11
echo
"
$1
"
>&
2
12
exit
$2
13
}
14
15
autoreconf
-f -i -v
|| die
"autoreconf failed"
$?