aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-07-31 12:06:22 -0700
committerJunio C Hamano <junkio@cox.net>2005-07-31 12:06:22 -0700
commita52b41b265969e51c8ddab1bc128928cd880bc3e (patch)
treeec7f2b4cafed0a68be75c5d0bf23d36679f57112
parent5da5c8f4cf4fb4e1cbccca4e7cebe70b77cf0b00 (diff)
downloadgit-a52b41b265969e51c8ddab1bc128928cd880bc3e.tar.gz
git-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>
-rw-r--r--tools/Makefile6
1 files changed, 3 insertions, 3 deletions
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