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