Skip to content
Snippets Groups Projects
Commit 8c1e9f40 authored by Sebastian Schuberth's avatar Sebastian Schuberth Committed by Junio C Hamano
Browse files

check-builtins: strip executable suffix $X when enumerating builtins


On Windows, the builtin executable names are suffixed with $X.

Signed-off-by: default avatarSebastian Schuberth <sschuberth@gmail.com>
Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
parent 282616c7
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
{
cat <<\EOF
sayIt:
$(foreach b,$(BUILT_INS),echo XXX $b YYY;)
$(foreach b,$(BUILT_INS),echo XXX $(b:$X=) YYY;)
EOF
cat Makefile
} |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment