Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Fix typo in recent Makefile cleanup (again).
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>
tools/Makefile
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
5da5c8f
)
diff --git
a/tools/Makefile
b/tools/Makefile
index a16b667964e49d2924b4c5a606598518e7575821..e423af9593208338e83222855c255ee8f3a39b0b 100644
(file)
--- 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
+bin
dir
=$(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)$(bin
dir
)
+ $(INSTALL) $(PROGRAMS) $(SCRIPTS) $(dest)$(bin
dir
)
clean:
rm -f $(PROGRAMS) *.o