summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-01-30 08:53:06 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-01-30 08:53:06 +0100
commitcd906c21f8051aa4cd6442f014c8280ae0c9d9f9 (patch)
tree769f9351474b535566095ec0180307ddeee6ca20 /autogen.sh
parent1c3fb9925274a4b48b6173b054d7cf1511302ea5 (diff)
Use a symbolic link for the pre-commit client-side hook
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index 06951baa..5b6bf93f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -23,10 +23,10 @@ fi
. common/gst-autogen.sh
# install pre-commit hook for doing clean commits
-if test ! -x .git/hooks/pre-commit;
+if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
then
- cp common/hooks/pre-commit.hook .git/hooks/pre-commit
- chmod +x .git/hooks/pre-commit
+ rm -f .git/hooks/pre-commit
+ ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
fi