git-gui: Correct installation of library to be $prefix/share
We always wanted the library for git-gui to install into the $prefix/share directory, not $prefix/libexec/share. All of the files in our library are platform independent and may be reused across systems, like any other content stored in the share directory. Our computation of where our library should install to was broken when git itself started installing to $prefix/libexec/git-core, which was one level down from where we expected it to be. Signed-off-by: Steffen Prohaska <prohaska@zib.de> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
79317e5df1
commit
f8f1acf339
4
Makefile
4
Makefile
@ -34,8 +34,12 @@ ifndef gitexecdir
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef sharedir
|
ifndef sharedir
|
||||||
|
ifeq (git-core,$(notdir $(gitexecdir)))
|
||||||
|
sharedir := $(dir $(patsubst %/,%,$(dir $(gitexecdir))))share
|
||||||
|
else
|
||||||
sharedir := $(dir $(gitexecdir))share
|
sharedir := $(dir $(gitexecdir))share
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifndef INSTALL
|
ifndef INSTALL
|
||||||
INSTALL = install
|
INSTALL = install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user