diff options
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index d0a292c187..c1e7defb42 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -418,7 +418,7 @@ gitconfig: for hook in commit-msg pre-commit ; do \ if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o \ ! -x .git/hooks/$$hook ]; then \ - cp util/gitconfig/$$hook .git/hooks/$$hook; \ + sed -e "s,%MAKE%,$(MAKE),g" util/gitconfig/$$hook > .git/hooks/$$hook; \ chmod +x .git/hooks/$$hook; \ fi; \ done |