File: configure

package info (click to toggle)
tfortune 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 248 kB
  • sloc: ansic: 2,477; makefile: 227; yacc: 85; sh: 25
file content (12 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download | duplicates (2)
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 "$@"