994fc1f8e3
I also fixed autogen.sh to do some magic on warnings/errors based on whether code comes from github or not.
14 lines
217 B
Bash
Executable File
14 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Create configure and makefile stuff...
|
|
#
|
|
|
|
if test -d .git; then
|
|
WARNINGS="all,error"
|
|
else
|
|
WARNINGS="all"
|
|
fi
|
|
|
|
autoreconf --install --force --verbose
|
|
ln -s -f ../../pre-commit.sh .git/hooks/pre-commit
|