summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 1aaf695718da344d64d0951aeae14938409ece05 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

srcdir="`dirname "$0"`"
test -n "$srcdir" || srcdir=.

(cd "$srcdir"; autoreconf -i)

if test -z "$NOCONFIGURE"; then
  "$srcdir"/configure "$@"
fi