blob: b2f719f8df7619181323ef47e5270e41a4d24ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# SPDX-License-Identifier: GPL-3.0-only
set -e
if ! test -x configure.sh; then
autoconf configure.ac > configure.sh
chmod 755 configure.sh
autoheader
fi
sh configure.sh "$@"
|