2011-03-11 06:43:59 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Create configure and makefile stuff...
|
|
|
|
#
|
|
|
|
|
2012-10-26 10:06:06 +04:00
|
|
|
if test -d .git; then
|
|
|
|
WARNINGS="all,error"
|
|
|
|
else
|
|
|
|
WARNINGS="all"
|
|
|
|
fi
|
|
|
|
|
|
|
|
autoreconf --install --force --verbose
|
2013-03-13 21:06:08 +04:00
|
|
|
|
|
|
|
if test -d .git; then
|
|
|
|
ln -s -f ../../pre-commit.sh .git/hooks/pre-commit
|
|
|
|
fi
|