Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sudo-project
GitHub Repository: sudo-project/sudo
Path: blob/main/autogen.sh
1532 views
1
#!/bin/sh
2
3
# OpenBSD may have multiple versions of autoconf and automake installed
4
# If the user hasn't chosen one themselves, we do here.
5
if [ "`/usr/bin/uname 2>&1`" = "OpenBSD" ]; then
6
if [ X"$AUTOMAKE_VERSION" = X"" ]; then
7
AUTOMAKE_VERSION=1.16; export AUTOMAKE_VERSION
8
fi
9
if [ X"$AUTOCONF_VERSION" = X"" ]; then
10
AUTOCONF_VERSION=2.71; export AUTOCONF_VERSION
11
fi
12
fi
13
14
set -ex
15
16
autoreconf -f -i -v -Wall -I m4
17
18
rm -rf autom4te.cache
19
20
exit 0
21
22