spek/autogen.sh
Alexander Kojevnikov 2273e74b88 Remove intltool
2022-04-09 15:04:29 -07:00

12 lines
263 B
Bash
Executable File

#!/bin/sh
# Run this to generate all the initial makefiles, etc.
test -n "$srcdir" || srcdir=$(dirname "$0")
test -n "$srcdir" || srcdir=.
(
cd "$srcdir" &&
touch config.rpath &&
autoreconf -fiv
) || exit
test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"