Junio C Hamano wrote: > Perhaps something like this is in order? [...] > +++ b/Makefile > @@ -2127,17 +2127,25 @@ po/git.pot: $(LOCALIZED_C) > > pot: po/git.pot > > +git_check = $(shell git ls-files >/dev/null 2>&1; echo $$?) > +ifeq ($(git_check),0) > +FIND_SOURCE_FILES = git ls-files '*.[hcS]' > +else > +FIND_SOURCE_FILES = $(FIND) . \( -name .git -type d -prune \) \ > + -o \( -name '*.[hcS]' -type f -print \) > +endif Neat. I'd prefer something like FIND_SOURCE_FILES = \ git ls-files '*.[hcS]' 2>/dev/null || \ $(FIND) . -name .git -prune -o -name '*.[hcS]' -type f -print that avoid punishing people who were using the makefile for some purpose unrelated to tags and cscope, though. ;) -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html