[PATCH] make INSTALL binary in Makefile configurable via make variable
From: Thomas Glanzmann <hidden>
Date: 2016-06-15 22:41:56
From: Thomas Glanzmann <hidden>
Date: 2016-06-15 22:41:56
[PATCH] make INSTALL binary in Makefile configurable via make variable On Solaris machines gnu install called ginstall Signed-Off-by: Thomas Glanzmann <redacted>
--- 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