diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-31 12:06:22 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-07-31 12:06:22 -0700 |
commit | a52b41b265969e51c8ddab1bc128928cd880bc3e (patch) | |
tree | ec7f2b4cafed0a68be75c5d0bf23d36679f57112 /tools | |
parent | Teach parse_commit_buffer about grafting. (diff) | |
download | tgif-a52b41b265969e51c8ddab1bc128928cd880bc3e.tar.xz |
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 <junkio@cox.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/Makefile b/tools/Makefile index a16b667964..e423af9593 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 |