summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 6214204820facedd3c13dbce8a92dd7962ebfd2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh

srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.

ORIGDIR=`pwd`
cd "$srcdir"

# install pre-commit hook
SRC_PRE_COMMIT=hooks/pre-commit.hook
GIT_PRE_COMMIT=.git/hooks/pre-commit

if [ ! \( -x $GIT_PRE_COMMIT -a -L $GIT_PRE_COMMIT \) ]; then
    rm -f $GIT_PRE_COMMIT
    ln -s ../../$SRC_PRE_COMMIT $GIT_PRE_COMMIT
fi

autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?

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