My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
282616c
)
check-builtins: strip executable suffix $X when enumerating builtins
author
Sebastian Schuberth
<sschuberth@gmail.com>
Thu, 5 Feb 2015 13:28:04 +0000
(14:28 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 5 Feb 2015 20:03:27 +0000
(12:03 -0800)
On Windows, the builtin executable names are suffixed with $X.
Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
check-builtins.sh
patch
|
blob
|
history
diff --git
a/check-builtins.sh
b/check-builtins.sh
index
07cff69
..
a0aaf3a
100755
(executable)
--- a/
check-builtins.sh
+++ b/
check-builtins.sh
@@
-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
} |