From: Matt McCutchen Date: Tue, 10 Jul 2007 01:30:39 +0000 (-0400) Subject: Makefile: rebuild git.o on version change, clean up git$X flags X-Git-Tag: v1.5.3-rc1~32 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/54dadbdb29668fbd51effefd0a0c65d915f5422b?hp=54dadbdb29668fbd51effefd0a0c65d915f5422b Makefile: rebuild git.o on version change, clean up git$X flags Commit 334d28ae factored out git.o as an intermediate stage between git.c and git$X. However: - It left some no-longer-relevant flags in the rule for git$X. - It failed to replace git$X with git.o in the list of files that record GIT_VERSION. This broke incorporation of a changed GIT_VERSION into git$X because, when GIT_VERSION changes, git.o isn't remade and git$X is relinked from the git.o that still contains the old GIT_VERSION. This patch removes the irrelevant flags and fixes incorporation of a changed GIT_VERSION into git$X. Signed-off-by: Matt McCutchen Signed-off-by: Junio C Hamano ---