* [PATCH] make INSTALL binary in Makefile configurable via make variable
@ 2005-05-06 13:46 Thomas Glanzmann
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Glanzmann @ 2005-05-06 13:46 UTC (permalink / raw)
To: GIT
[PATCH] make INSTALL binary in Makefile configurable via make variable
On Solaris machines gnu install called ginstall
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@
CC=gcc
AR=ar
+INSTALL=install
SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
git-pull-script git-tag-script git-resolve-script
@@ -26,7 +27,7 @@
all: $(PROG)
install: $(PROG) $(SCRIPTS)
- install $(PROG) $(SCRIPTS) $(HOME)/bin/
+ $(INSTALL) $(PROG) $(SCRIPTS) $(HOME)/bin/
LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
tag.o date.o
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH] make INSTALL binary in Makefile configurable via make variable
@ 2005-05-07 8:41 Thomas Glanzmann
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Glanzmann @ 2005-05-07 8:41 UTC (permalink / raw)
To: GIT; +Cc: Linus Torvalds
[PATCH] make INSTALL binary in Makefile configurable via make variable
On Solaris machines gnu install called ginstall
Signed-Off-by: Thomas Glanzmann <sithglan@stud.uni-erlangen.de>
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,7 @@
CC=gcc
AR=ar
+INSTALL=install
SCRIPTS=git-apply-patch-script git-merge-one-file-script git-prune-script \
git-pull-script git-tag-script git-resolve-script
@@ -26,7 +27,7 @@
all: $(PROG)
install: $(PROG) $(SCRIPTS)
- install $(PROG) $(SCRIPTS) $(HOME)/bin/
+ $(INSTALL) $(PROG) $(SCRIPTS) $(HOME)/bin/
LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \
tag.o date.o
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-05-07 8:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-06 13:46 [PATCH] make INSTALL binary in Makefile configurable via make variable Thomas Glanzmann
-- strict thread matches above, loose matches on Subject: below --
2005-05-07 8:41 Thomas Glanzmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).