#!/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 "$@"
