[PATCH v2] perl: also mark git-contacts executable
From: D. Ben Knoble <hidden>
Date: 2025-11-11 00:20:21
Subsystem:
the rest · Maintainer:
Linus Torvalds
When installing git-contacts with Meson via -Dcontrib=contacts, the default Perl generation fails to mark it executable. As a result, "git contacts" reports "'contacts' is not a git command." Unlike generate-script.sh, we aren't testing the basename here; so, glob the script name in the case arm to match wherever the input comes from. Signed-off-by: D. Ben Knoble <redacted> --- A small typo fix for the commit message, thanks to Patrick. v1: https://lore.kernel.org/git/7fbb341e8f05fcde3a1543e3bb4e5a3ec1101692.1762280097.git.ben.knoble+github@gmail.com/ (local) generate-perl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/generate-perl.sh b/generate-perl.sh
index 65f122ebfc..796d835932 100755
--- a/generate-perl.sh
+++ b/generate-perl.sh@@ -30,7 +30,7 @@ "$INPUT" >"$OUTPUT" case "$INPUT" in -*.perl) +*.perl|*git-contacts) chmod a+x "$OUTPUT";; *) ;;
Diff-intervalle contre v1 :
1: 7fbb341e8f ! 1: 15f07afcb6 perl: also mark git-contacts executable
@@ Metadata
## Commit message ##
perl: also mark git-contacts executable
- When install git-contacts with Meson via -Dcontrib=contacts, the default
- Perl generation fails to mark it executable. As a result, "git contacts"
- reports "'contacts' is not a git command."
+ When installing git-contacts with Meson via -Dcontrib=contacts, the
+ default Perl generation fails to mark it executable. As a result, "git
+ contacts" reports "'contacts' is not a git command."
Unlike generate-script.sh, we aren't testing the basename here; so, glob
the script name in the case arm to match wherever the input comes from.
base-commit: 7f278e958afbf9b7e0727631b4c26dcfa1c63d6e
prerequisite-patch-id: 664e4667d11a226a89da52814505a0c8d31b9fba
--
2.52.0.rc0.71.g03eda12af0.dirty