aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward Hervey2009-01-30 02:03:42 -0600
committerEdward Hervey2009-02-21 10:47:29 -0600
commite1d532d7bd89b4de6e5182ec9d2e301bd7c9a718 (patch)
treeba924f1f19d740aca27ff34140f5cdd062fd3ca6 /autogen.sh
parentb7f617ad585bf441b417035b9d9f46dcc215d9a5 (diff)
downloadgst-plugins-bad0-10-e1d532d7bd89b4de6e5182ec9d2e301bd7c9a718.tar.gz
gst-plugins-bad0-10-e1d532d7bd89b4de6e5182ec9d2e301bd7c9a718.tar.xz
gst-plugins-bad0-10-e1d532d7bd89b4de6e5182ec9d2e301bd7c9a718.zip
autogen.sh: actually setting up a symbolic link for the pre-commit hook
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 7bceb7c48..7ac3720d2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -25,8 +25,8 @@ fi
25# install pre-commit hook for doing clean commits 25# install pre-commit hook for doing clean commits
26if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \); 26if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
27then 27then
28 cp common/hooks/pre-commit.hook .git/hooks/pre-commit 28 rm -f .git/hooks/pre-commit
29 chmod +x .git/hooks/pre-commit 29 ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
30fi 30fi
31 31
32CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc' 32CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc'