]> asedeno.scripts.mit.edu Git - git.git/commitdiff
Fix typo in recent Makefile cleanup (again).
authorJunio C Hamano <junkio@cox.net>
Sun, 31 Jul 2005 19:06:22 +0000 (12:06 -0700)
committerJunio C Hamano <junkio@cox.net>
Sun, 31 Jul 2005 19:06:22 +0000 (12:06 -0700)
Another instance of $(bin) was missed when it was renamed to
$(bindir).

Signed-off-by: Junio C Hamano <junkio@cox.net>
tools/Makefile

index a16b667964e49d2924b4c5a606598518e7575821..e423af9593208338e83222855c255ee8f3a39b0b 100644 (file)
@@ -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