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: https://git.lorimer.id.au/gitweb.git/diff_plain/9145b19ecf163b9a4aa3c9fda38ca3af41cd52d3 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 4b58b91820..15d13197d4 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) $@+