Initial commit.
[tfortune.git] / configure
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-3.0-only
3
4 set -e
5
6 if ! test -x configure.sh; then
7         autoconf configure.ac > configure.sh
8         chmod 755 configure.sh
9         autoheader
10 fi
11
12 sh configure.sh "$@"