Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
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
raw
|
patch
| inline |
side by side
(parent:
282616c
)
diff --git
a/check-builtins.sh
b/check-builtins.sh
index 07cff69d8e5c5fdbca47b603dbc2e9c067d369fd..a0aaf3a3473cadb162f8c39175b0ceb6cee1535a 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
} |