summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: de3bac942a1ec3687b6d1faabf194b4907fa8c78 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
# Part of pacemaker project
# SPDX-License-Identifier: GPL-2.0-or-later

# We configure some build artifacts to go to libltdl/config. autotools will
# happily create it if it doesn't exist, but will still print an error and
# exit nonzero in that case. :-(
mkdir -p libltdl/config

autoreconf -fisv || exit $?
echo 'Now run ./configure and make'