From: Jonathan Nieder Date: Sat, 2 Jul 2016 00:32:00 +0000 (-0700) Subject: generate-cmdlist: avoid non-deterministic output X-Git-Tag: v2.16.0-rc0~78^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7513595a3b997e07ad525b213b83e4f0bd358bb9;p=thirdparty%2Fgit.git generate-cmdlist: avoid non-deterministic output Non-determinism makes it harder for build tools to discover when a target needs to be rebuilt. generate-cmdlist.sh stores the full path in a comment: /* Automatically generated by /build/git-agojiD/git-2.15.0/generate-cmdlist.sh */ Use the file name alone instead. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh index ab0d1b0c06..eeea4b67ea 100755 --- a/generate-cmdlist.sh +++ b/generate-cmdlist.sh @@ -1,6 +1,6 @@ #!/bin/sh -echo "/* Automatically generated by $0 */ +echo "/* Automatically generated by generate-cmdlist.sh */ struct cmdname_help { char name[16]; char help[80];