From: Johannes Sixt Date: Mon, 6 Aug 2012 21:06:14 +0000 (+0200) Subject: Makefile: use overridable $(FIND) instead of hard-coded 'find' X-Git-Tag: v1.7.12-rc2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9145b19ecf163b9a4aa3c9fda38ca3af41cd52d3;p=git.git Makefile: use overridable $(FIND) instead of hard-coded 'find' The Makefile already offers the variable $(FIND) and uses it except in one place. Fix it. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 4b58b9182..15d13197d 100644 --- a/Makefile +++ b/Makefile @@ -2093,7 +2093,7 @@ $(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak perl/perl.mak: perl/PM.stamp perl/PM.stamp: FORCE - $(QUIET_GEN)find perl -type f -name '*.pm' | sort >$@+ && \ + $(QUIET_GEN)$(FIND) perl -type f -name '*.pm' | sort >$@+ && \ { cmp $@+ $@ >/dev/null 2>/dev/null || mv $@+ $@; } && \ $(RM) $@+