In git.git the Makefile variable $(gitexecdir) can be relative. It now exports the actual install location in $(gitexec_instdir). Signed-off-by: Johannes Sixt <johannes.sixt@xxxxxxxxxx> --- Makefile | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index b19fb2d..c8660fb 100644 --- a/Makefile +++ b/Makefile @@ -30,8 +30,12 @@ ifndef SHELL_PATH endif ifndef gitexecdir +ifdef gitexec_instdir + gitexecdir := $(gitexec_instdir) +else gitexecdir := $(shell git --exec-path) endif +endif ifndef sharedir sharedir := $(dir $(gitexecdir))share -- 1.6.0.rc0.18.g6aef2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html