gitconfig: Use the right make executable in git hooks

When installing git hooks through $(MAKE) gitconfig,
make knows itself (and is a GNU make). So let it splice
itself into hooks where necessary by replacing %MAKE%.

Change-Id: Iaf778bfa3f17a8fe31312f871571ed89a9de5385
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/10018
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Patrick Georgi 2015-04-28 21:36:11 +02:00 committed by Patrick Georgi
parent 7cb26b4a6e
commit f394715277
2 changed files with 2 additions and 2 deletions

View File

@ -418,7 +418,7 @@ gitconfig:
for hook in commit-msg pre-commit ; do \ for hook in commit-msg pre-commit ; do \
if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o \ if [ util/gitconfig/$$hook -nt .git/hooks/$$hook -o \
! -x .git/hooks/$$hook ]; then \ ! -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; \ chmod +x .git/hooks/$$hook; \
fi; \ fi; \
done done

View File

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/sh
exec make lint-stable exec %MAKE% lint-stable