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 --- templates/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'templates/Makefile') diff --git a/templates/Makefile b/templates/Makefile index 6b2a90071..776e6c800 100644 --- a/templates/Makefile +++ b/templates/Makefile @@ -3,7 +3,7 @@ INSTALL=install prefix=$(HOME) template_dir=$(prefix)/share/git-core/templates/ -# dest= +# DESTDIR= all: boilerplates custom find blt @@ -34,5 +34,5 @@ clean: rm -rf blt install: all - $(INSTALL) -d -m755 $(dest)$(template_dir) - tar Ccf blt - . | tar Cxf $(dest)$(template_dir) - + $(INSTALL) -d -m755 $(DESTDIR)$(template_dir) + tar Ccf blt - . | tar Cxf $(DESTDIR)$(template_dir) - -- cgit v1.2.1