aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2007-07-29 15:23:28 -0700
committerJunio C Hamano <gitster@pobox.com>2007-07-29 15:23:28 -0700
commit89b2f19cb516249b8d9546bb1f3f46a1ec5b3242 (patch)
treeee2cd08e7d78fc9050bf44cc915fee72acc80a27 /Makefile
parent82cb8afa9bf24d2f77a6d565cdc08d6aa1febeb4 (diff)
downloadgit-89b2f19cb516249b8d9546bb1f3f46a1ec5b3242.tar.gz
git-89b2f19cb516249b8d9546bb1f3f46a1ec5b3242.tar.xz
Makefile: use $(FIND) instead of find
Some people might prefer to be able to specify the find utility to use. Signed-off-by: David Kastrup <dak@gnu.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 73b487fba..c58a4c2a0 100644
--- a/Makefile
+++ b/Makefile
@@ -176,6 +176,7 @@ CC = gcc
AR = ar
RM = rm -f
TAR = tar
+FIND = find
INSTALL = install
RPMBUILD = rpmbuild
TCL_PATH = tclsh
@@ -903,11 +904,11 @@ doc:
TAGS:
$(RM) TAGS
- find . -name '*.[hcS]' -print | xargs etags -a
+ $(FIND) . -name '*.[hcS]' -print | xargs etags -a
tags:
$(RM) tags
- find . -name '*.[hcS]' -print | xargs ctags -a
+ $(FIND) . -name '*.[hcS]' -print | xargs ctags -a
### Detect prefix changes
TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\