diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index eadf0c704..289c21ee6 100755 --- a/autogen.sh +++ b/autogen.sh @@ -199,7 +199,7 @@ EOF fi -# Check the git setup. +# Update the git setup. if [ -d .git ]; then if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then cat <<EOF >&2 @@ -219,6 +219,13 @@ EOF git config --add filter.cleanpo.clean \ "awk '/^\"POT-Creation-Date:/&&!s{s=1;next};!/^#: /{print}'" fi + if [ -f scripts/git-hooks/commit-msg -a ! -f .git/hooks/commit-msg ] ; then + cat <<EOF >&2 +*** Activating commit log message check hook. *** +EOF + cp -av scripts/git-hooks/commit-msg .git/hooks/commit-msg + chmod -c +x .git/hooks/commit-msg + fi fi |