diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-07-30 00:18:26 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-30 00:18:26 -0700 |
commit | 731ab1f55e7ba736b24708a63e93a7c8d581a4d6 (patch) | |
tree | 602f7ddda98503fda6f2d014ca322beaf79a868f /git-gui/Makefile | |
parent | Teach gitlinks to ie_modified() and ce_modified_check_fs() (diff) | |
parent | git-gui (Windows): Change wrapper to execdir 'libexec/git-core' (diff) | |
download | tgif-731ab1f55e7ba736b24708a63e93a7c8d581a4d6.tar.xz |
Merge git://repo.or.cz/git-gui
* git://repo.or.cz/git-gui:
git-gui (Windows): Change wrapper to execdir 'libexec/git-core'
git-gui (Windows): Switch to relative discovery of oguilib
git-gui: Correct installation of library to be $prefix/share
git-gui: Fix gitk search in $PATH to work on Windows
git-gui: Preserve scroll position on reshow_diff.
git-gui: Fix the Remote menu separator.
Diffstat (limited to 'git-gui/Makefile')
-rw-r--r-- | git-gui/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/git-gui/Makefile b/git-gui/Makefile index b19fb2d64e..55765c8a3a 100644 --- a/git-gui/Makefile +++ b/git-gui/Makefile @@ -34,8 +34,12 @@ ifndef gitexecdir endif ifndef sharedir +ifeq (git-core,$(notdir $(gitexecdir))) + sharedir := $(dir $(patsubst %/,%,$(dir $(gitexecdir))))share +else sharedir := $(dir $(gitexecdir))share endif +endif ifndef INSTALL INSTALL = install @@ -156,6 +160,7 @@ endif ifneq (,$(findstring MINGW,$(uname_S))) NO_MSGFMT=1 GITGUI_WINDOWS_WRAPPER := YesPlease + GITGUI_RELATIVE := 1 endif ifdef GITGUI_MACOSXAPP |