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>
This commit is contained in:
parent
5da5c8f4cf
commit
a52b41b265
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user