diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2025-11-17 19:51:26 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-11-17 14:05:05 -0800 |
| commit | c64eb849b14e5a78864f4260ccc12f46052020ec (patch) | |
| tree | f9be14c3c867764ff2dcc0dc857e865ee916dedd | |
| parent | f368df439b31b422169975cc3c95f7db6a46eada (diff) | |
| download | git-c64eb849b14e5a78864f4260ccc12f46052020ec.tar.gz | |
make strip: include `scalar`
When Scalar was made a canonical part of Git in 7b5c93c6c68 (scalar:
include in standard Git build & installation, 2022-09-02), it was added
to all relevant Makefile targets except for the `strip` target.
Let's correct that.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2499,7 +2499,7 @@ please_set_SHELL_PATH_to_a_more_modern_shell: shell_compatibility_test: please_set_SHELL_PATH_to_a_more_modern_shell -strip: $(PROGRAMS) git$X +strip: $(PROGRAMS) git$X scalar$X $(STRIP) $(STRIP_OPTS) $^ ### Target-specific flags and dependencies |
