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

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

olddir=`pwd`
cd "$srcdir"

autoreconf --install

cd "$olddir"

"$srcdir/configure" "$@"