From a682ef9f06075b4bb83dcf479c91d578125084b9 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Fri, 5 Aug 2005 01:56:38 +0200 Subject: [PATCH] Use $DESTDIR instead of $dest $DESTDIR is more usual during the build than $dest and is what is usually used in the makefiles, so let's use it too. Signed-off-by: Petr Baudis Signed-off-by: Junio C Hamano --- tools/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/Makefile b/tools/Makefile index 480ce4aad3..779177c5a9 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -7,7 +7,7 @@ ALL_CFLAGS = $(CFLAGS) INSTALL=install prefix=$(HOME) bindir=$(prefix)/bin -# dest= +# DESTDIR= PROGRAMS=git-mailsplit git-mailinfo SCRIPTS=git-applymbox git-applypatch @@ -19,7 +19,7 @@ all: $(PROGRAMS) install: $(PROGRAMS) $(SCRIPTS) $(INSTALL) -m755 -d $(dest)$(bindir) - $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(dest)$(bindir) + $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(DESTDIR)$(bindir) clean: rm -f $(PROGRAMS) *.o -- cgit v1.3-6-g1900