From: Junio C Hamano Date: Sun, 31 Jul 2005 19:06:22 +0000 (-0700) Subject: Fix typo in recent Makefile cleanup (again). X-Git-Tag: v0.99.3~13 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=a52b41b265969e51c8ddab1bc128928cd880bc3e;p=git.git 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 a16b66796..e423af959 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