Hello!
It shouldn't be necessary to patch Makefile to specify where scripts
should be installed. This patch introduces a variable bindir for that
purpose. The name of the variable was chosen for compatibility with
projects using Automake.
For example, to install scripts to /usr/local/bin use:
make install bindir=usr/local/bin
Signed-off-by: Pavel Roskin <[EMAIL PROTECTED]>
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,7 @@ CFLAGS=-g -O3 -Wall
CC=gcc
AR=ar
+bindir = $(HOME)/bin/
PROG= update-cache show-diff init-db write-tree read-tree commit-tree \
cat-file fsck-cache checkout-cache diff-tree rev-tree show-files \
@@ -54,7 +55,7 @@ gitversion.sh: $(VERSION)
@chmod +x $@
install: $(PROG) $(GEN_SCRIPT)
- install $(PROG) $(SCRIPT) $(GEN_SCRIPT) $(HOME)/bin/
+ install $(PROG) $(SCRIPT) $(GEN_SCRIPT) $(bindir)
clean:
rm -f *.o $(PROG) $(GEN_SCRIPT) $(LIB_FILE)
--
Regards,
Pavel Roskin
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html