diff options
author | Jeff King <peff@peff.net> | 2012-06-20 14:31:42 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-09 07:57:29 -0700 |
commit | 47eb28ec0cdb372f4354800e2e0ec713ad4c1992 (patch) | |
tree | 1e76954a9a05b99c6e9408340ac38b1ddcd04b6d | |
parent | c0219dd5d8cd11ea7a112081efd1db59d0bec105 (diff) | |
download | git-47eb28ec0cdb372f4354800e2e0ec713ad4c1992.tar.gz git-47eb28ec0cdb372f4354800e2e0ec713ad4c1992.tar.xz |
Makefile: do not replace @@GIT_USER_AGENT@@ in scripts
No scripts actually care about this replacement. This was
erroneously added by 42dcbb7 (version: add git_user_agent function,
2012-06-02).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -2007,7 +2007,6 @@ sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \ -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \ -e 's|@@DIFF@@|$(DIFF_SQ)|' \ -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \ - -e 's|@@GIT_USER_AGENT@@|$(GIT_USER_AGENT_SQ)|g' \ -e 's|@@LOCALEDIR@@|$(localedir_SQ)|g' \ -e 's/@@NO_CURL@@/$(NO_CURL)/g' \ -e 's/@@USE_GETTEXT_SCHEME@@/$(USE_GETTEXT_SCHEME)/g' \ |