From a52b41b265969e51c8ddab1bc128928cd880bc3e Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 31 Jul 2005 12:06:22 -0700 Subject: Fix typo in recent Makefile cleanup (again). Another instance of $(bin) was missed when it was renamed to $(bindir). Signed-off-by: Junio C Hamano diff --git a/tools/Makefile b/tools/Makefile index a16b667..e423af9 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -7,7 +7,7 @@ CFLAGS=-g $(COPTS) -Wall INSTALL=install HOME=$(shell echo $$HOME) prefix=$(HOME) -bin=$(prefix)/bin +bindir=$(prefix)/bin # dest= PROGRAMS=git-mailsplit git-mailinfo @@ -19,8 +19,8 @@ git-%: %.c all: $(PROGRAMS) install: $(PROGRAMS) $(SCRIPTS) - $(INSTALL) -m755 -d $(dest)$(bin) - $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(dest)$(bin) + $(INSTALL) -m755 -d $(dest)$(bindir) + $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(dest)$(bindir) clean: rm -f $(PROGRAMS) *.o -- cgit v0.10.2-6-g49f6