summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5da5c8f)
raw | patch | inline | side by side (parent: 5da5c8f)
author | Junio C Hamano <junkio@cox.net> | |
Sun, 31 Jul 2005 19:06:22 +0000 (12:06 -0700) | ||
committer | Junio 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>
$(bindir).
Signed-off-by: Junio C Hamano <junkio@cox.net>
tools/Makefile | patch | blob | history |
diff --git a/tools/Makefile b/tools/Makefile
index a16b667964e49d2924b4c5a606598518e7575821..e423af9593208338e83222855c255ee8f3a39b0b 100644 (file)
--- a/tools/Makefile
+++ b/tools/Makefile
INSTALL=install
HOME=$(shell echo $$HOME)
prefix=$(HOME)
-bin=$(prefix)/bin
+bindir=$(prefix)/bin
# dest=
PROGRAMS=git-mailsplit git-mailinfo
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