Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 750a5a9e4470051ceaf07df91be526531194e1da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

test -n "${srcdir}" || srcdir=`dirname "$0"`
test -n "${srcdir}" || srcdir="$(pwd)"

olddir="$(pwd)"
cd "$srcdir"

export ACLOCAL="aclocal -I m4"

autoreconf -i

cd "$olddir"
"$srcdir/configure" --enable-maintainer-mode "$@"