Welcome to mirror list, hosted at ThFree Co, Russian Federation.

autogen.sh - github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5c04909ea0be78344b48af2c31fd9d8913c20ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

test -z "$srcdir" && srcdir=$(dirname "$0")
test -z "$srcdir" && srcdir=.

cwd=$(pwd)
cd "$srcdir"

./update.sh || exit $?

mkdir -p m4
autoreconf --verbose --force --install || exit $?

cd "$cwd"
test -z "$NOCONFIGURE" && "$srcdir/configure" $@