diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-09-12 22:37:45 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-27 11:45:20 -0700 |
commit | b3457afc4f6da6cfef265359ed182c5fcd6d266c (patch) | |
tree | 996e3f6f2792b7ac6b55cebcea2708f6b7550478 | |
parent | git-stash: fix flag parsing (diff) | |
download | tgif-b3457afc4f6da6cfef265359ed182c5fcd6d266c.tar.xz |
Makefile: add CC to TRACK_CFLAGS
Change the git make process so that everything's rebuilt if the CC is
changed. Before we wouldn't rebuilt if e.g. the CC variable was
changed from gcc to clang.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1974,7 +1974,7 @@ cscope: $(FIND) . -name '*.[hcS]' -print | xargs cscope -b ### Detect prefix changes -TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\ +TRACK_CFLAGS = $(CC):$(subst ','\'',$(ALL_CFLAGS)):\ $(bindir_SQ):$(gitexecdir_SQ):$(template_dir_SQ):$(prefix_SQ) GIT-CFLAGS: FORCE |