diff options
author | Brice Waegeneire <brice@waegenei.re> | 2025-06-22 12:28:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-30 14:30:40 +0200 |
commit | c6b4fe16f467cca745bcbb0acd75a5eb35d22a50 (patch) | |
tree | 9b57c3de1cac5712225a66078142a0082738a364 | |
parent | aa2f243ab724ead8f7c06f0a9dc8c1a4874de7fe (diff) |
build: Create .git/hooks/.
* Makefile.am (.git/hooks/): Add.
(.git/hooks/%, .git/hooks/commit-msg): Depend on .git/hooks/.
Change-Id: I5e027d22ec71b8cb080dca2971fabb85c593cb35
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index e5f7dfefe1..90dfc570e5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,6 +20,7 @@ # Copyright © 2023 Clément Lassieur <clement@lassieur.org> # Copyright © 2023, 2024 Wilko Meyer <w@wmeyer.eu> # Copyright © 2024 gemmaro <gemmaro.dev@gmail.com> +# Copyright © 2025 Brice Waegeneire <brice@waegenei.re> # # This file is part of GNU Guix. # @@ -1248,7 +1249,12 @@ cuirass-jobs: $(GOBJECTS) .PHONY: update-guix-package update-NEWS cuirass-jobs release # Git auto-configuration. -.git/hooks/%: etc/git/% +.git/hooks/: + $(AM_V_at)if test -d .git; then \ + mkdir "$@"; \ + fi + +.git/hooks/%: etc/git/% | .git/hooks/ $(AM_V_at)if test -d .git; then \ cp "$<" "$@"; \ fi @@ -1260,7 +1266,7 @@ cuirass-jobs: $(GOBJECTS) fi COMMIT_MSG_MAGIC = VGhpcyBpcyB0aGUgY29tbWl0LW1zZyBob29rIG9mIEd1aXg= -.git/hooks/commit-msg: etc/git/commit-msg +.git/hooks/commit-msg: etc/git/commit-msg | .git/hooks/ $(AM_V_at)if test -d .git; then \ if test -f $@ && ! grep -qF $(COMMIT_MSG_MAGIC) $@; then \ mkdir -p $@.d && mv $@ $@.d && \ |