Skip to content

Commit

Permalink
Fix typo in recent Makefile cleanup (again).
Browse files Browse the repository at this point in the history
Another instance of $(bin) was missed when it was renamed to
$(bindir).

Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Junio C Hamano committed Jul 31, 2005
1 parent 5da5c8f commit a52b41b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit a52b41b

Please sign in to comment.